标签:style blog http color ar java sp div log
先看一段代码
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
标签:style blog http color ar java sp div log
原文地址:http://www.cnblogs.com/naruto469/p/4033882.html