Java - is `null` an instance of `object`?

前端 未结 7 1357
清酒与你
清酒与你 2021-01-07 16:36

I read that null isn\'t an instanceof anything, but on the other hand that everything in Java extends Object class.

7条回答
  •  孤城傲影
    2021-01-07 16:53

    No, null is not an object. It is a literal that means that a variable does not reference any object.

提交回复
热议问题