Is null is a keyword in Java?
|
|
|||||
|
|
|
No.It is not a keyword. |
|||
|
|
|
|
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. |
||
|
|
|
|
true and false are also literals. Java trivia: const and goto are keywords. |
||
|
|
|
|
No. See this for complete list KeywordList |
||
|
|
|
|
Not a keyword - the null literal.
|
||||||
|
|
|
Not according to the Java Language Specification list of keywords. On the other hand, this doesn't compile:
The rules for identifiers specify that:
I'm not sure what the benefit of making it not-a-keyword is, to be honest. |
||
