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

前端 未结 7 1461
清酒与你
清酒与你 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:41

    No, it is a reference. null is not an object

    String s = null;
    
    System.out.println(s instanceof Object); // false
    

提交回复
热议问题