vote up 1 vote down star

Is null is a keyword in Java?

flag
Why is this question -1? – Mystic Feb 6 at 10:31
probably because it would've taken less time to google the answer than to ask it. The second google result has the answer in the summary, you wouldn't even have to click the link. – devinb Feb 6 at 13:16

6 Answers

vote up 3 vote down check

No.It is not a keyword.

link|flag
vote up 2 vote down

null is a literal, in the same sense that false, 10, and '\n' are literals. It's not a "keyword", technically, but it is a character string that is treated specially by the compiler if the compiler encounters it in a java source file.

So, no, you cannot name a variable "null". The lexical analyzer will decide that it is not an identifier.

link|flag
vote up 1 vote down

true and false are also literals. Java trivia: const and goto are keywords.

link|flag
vote up 1 vote down

No. See this for complete list KeywordList

link|flag
vote up 6 vote down

Not a keyword - the null literal.

an identifier (oops, no it isn't)

link|flag
It's not an identifier either, according to java.sun.com/docs/books/… – Jon Skeet Feb 6 at 9:15
Yes, I realised by mistake already and fixed it... – Marc Gravell Feb 6 at 9:16
Up vote just because it's a trick question... – Tom Hawtin - tackline Feb 6 at 15:27
vote up 11 vote down

Not according to the Java Language Specification list of keywords. On the other hand, this doesn't compile:

int null = 10;

The rules for identifiers specify that:

An identifier is an unlimited-length sequence of Java letters and Java digits, the first of which must be a Java letter. An identifier cannot have the same spelling (Unicode character sequence) as a keyword (§3.9), boolean literal (§3.10.3), or the null literal (§3.10.7).

I'm not sure what the benefit of making it not-a-keyword is, to be honest.

link|flag
Lol, this answer implies that there are implementations of Java that accept null as a keyword. – Gamecat Feb 6 at 9:12
Gamecat, the way i read it, it says clearly the spec does not consider null a keyword. – tehvan Feb 6 at 9:17

Your Answer

Get an OpenID
or

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