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?
|
|
The default value of a In my system, the line |
||||
|
|
|
'\u0000' is the default value for a character. It's decimal equivalent is 0. When you are declaring some char variable without initializing it, '\u0000' will be assigned to it by default. see this code
This code will print true for the last print. |
||||
|
|
|
It's '\u0000'. See here for more information. |
|||
|
|