What is null in Java?

后端 未结 14 1369
陌清茗
陌清茗 2020-11-21 20:49

What is null?

Is null an instance of anything?

What set does null belong to?

How is it represented in the me

14条回答
  •  借酒劲吻你
    2020-11-21 21:13

    The null keyword is a literal that represents a null reference, one that does not refer to any object. null is the default value of reference-type variables.

    Also maybe have a look at

    null : Java Glossary

提交回复
热议问题