Java之对象引用static变量

来源:本站
导读:目前正在解读《Java之对象引用static变量》的相关信息,《Java之对象引用static变量》是由用户自行发布的知识型内容!下面请观看由(电工技术网 - www.9ddd.net)用户发布《Java之对象引用static变量》的详细说明。
简介:介绍Java之对象引用static变量

如下面代码

Java代码

public class Test

{

public static int a = 2;

public static void main(String[] args)

{

Test t = new Test();

t = null;

System.out.println(t.a);

}

}

输出为:

2

下面的代码

Java代码

public class Test

{

public static int a = 2;

public int b = 3;

public static void main(String[] args)

{

Test t = new Test();

t = null;

System.out.println(t.a);

System.out.println(t.b);

}

}

输出为:

2

Exception in thread "main" java.lang.NullPointerException

再看下面的代码:

Java代码

public class Test

{

public int a = 3;

public static int b = 2;

public static void main(String[] args)

{

Test t = new Test();

t = null;

System.out.println(t.a);

System.out.println(t.b);

}

}

输出为:

Exception in thread "main" java.lang.NullPointerException

提醒:《Java之对象引用static变量》最后刷新时间 2024-03-14 01:04:18,本站为公益型个人网站,仅供个人学习和记录信息,不进行任何商业性质的盈利。如果内容、图片资源失效或内容涉及侵权,请反馈至,我们会及时处理。本站只保证内容的可读性,无法保证真实性,《Java之对象引用static变量》该内容的真实性请自行鉴别。