cannot set char field to null value java

cannot set char field to null value java

The primitive datatype int isn't nullable.
What you can do is set its value to 0

char [] c= {'a','b','c','d'};
c[2] = 0; //now c becomes {'a','b',0,'d'}
Source:w‮‬ww.lautturi.com
Created Time:2017-09-02 10:50:20  Author:lautturi