码迷,mamicode.com
首页 > 编程语言 > 详细

Java中的null关键字

时间:2014-10-18 23:45:06      阅读:208      评论:0      收藏:0      [点我收藏+]

标签: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

 

 

 

Java中的null关键字

标签:style   blog   http   color   ar   java   sp   div   log   

原文地址:http://www.cnblogs.com/naruto469/p/4033882.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!