首页 > 代码库 > Java中的null关键字

Java中的null关键字

先看一段代码

public class NULL {    public static void Test(){        System.out.println("这是Test()的输出!!");    }    public static void main(String[] args) {        ((NULL)null).Test();    }}

上面的代码有没有错误?

答案是没有!!

编译运行

输出结果:
这是Test()的输出!!

这是因为Java中,null是一个关键字,用来标识一个不确定的对象。因此可以将null赋给引用类型变量,但不可以将null赋给基本类型变量。

 

深入Java中的null关键字请看这里http://lavasoft.blog.51cto.com/62575/79243

 

 

 

Java中的null关键字