((NULL) null).printNULL();((NULL) null).printnull();

来源:互联网 发布:mac sdk 环境变量配置 编辑:程序博客网 时间:2024/06/06 01:20
/** *  */package com.mischen.cn;/** * @author mischen * */public class NULL {    public static void printNULL(){    System.out.println("NULL");    }    public static void printnull(){    System.out.println("null");    }    public void printnull1(){    System.out.println("null1");    }    public static void main(String[] args){    ((NULL) null).printNULL();//NULL    ((NULL) null).printnull();//null    ((NULL) null).printnull1();// java.lang.NullPointerException    }}

原创粉丝点击