Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
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?

share|improve this question
If you have a new question, please post it as a separate question. – Matt Fenwick Mar 28 '12 at 14:46

3 Answers

up vote 6 down vote accepted

The default value of a char attribute is indeed '\u0000' (the null character) as stated in the Java Language Specification, section ยง4.12.5 Initial Values of Variables .

In my system, the line System.out.println('\u0000'); prints a little square, meaning that it's not a printable character - as expected.

share|improve this answer

'\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

class Test{
  char c ;
  public static void main(String args[]) throws Exception{
 Test t = new Test();
 char c1 = '\u0000';
      System.out.println(t.c);
      System.out.println(c1);
      System.out.println(t.c == c1);
 }}

This code will print true for the last print.

share|improve this answer

It's '\u0000'. See here for more information.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.