最佳答案
char c = '\u0000';
When I print c
, it shows 'a' in the command line window.
So what's the default value of a char
type field?
Someone said '\u0000'
means null in Unicode; is that right?