gpt4 book ai didi

java - 静态方法中的实例变量

转载 作者:行者123 更新时间:2023-11-30 08:15:18 25 4
gpt4 key购买 nike

我正在准备 Java SE 7 的 OCA 认证,在第一章 Java 基础 中,我阅读了以下有关静态方法的内容:

Static methods aren't associated with objects and can't use any of the instance variable of a class.

在下面的例子中,编译器给我一个错误:

class MyClass2 {

String a;

public MyClass2() {

}

static void check(){
if (a.equals("TEST"))
return;
}
}

Cannot make a static reference to the non-static field a.

如果我以这种方式更改类定义:

class MyClass {

String a;

public MyClass() {
// TODO Auto-generated constructor stub
check(a);
}

static void check(String a){
if (a.equals("TEST"))
return;
}
}

一切正常,编译器没有显示任何错误,这很奇怪,因为 a 始终是一个实例变量。

最佳答案

在第二个示例中,您检查 有一个名为a 的参数。对它执行相等性检查,而不是对实例成员 a 执行,实际上,它仍然无法从 static 上下文访问。

关于java - 静态方法中的实例变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28912867/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com