转载: java 常见问题
Question: In java, are true and false keywords?
Answer:
true, false, and null might seem like keywords, but they are actually literals. You cannot use them as identifiers in your programs.
翻译: true、false和null可能看起来像关键字,但它们实际上是文字量。不能在程序中使用它们作为标识符。
在java 核心技术 附录A中:
null 一个空引用(null 从技术上讲是一个直接量, 而不是一个关键字)