gpt4 book ai didi

java - 隐藏变量并访问它们?

转载 作者:行者123 更新时间:2023-11-30 03:26:36 25 4
gpt4 key购买 nike

我有一个代码,但我遇到了一些问题。

public class Out {
int value = 7;
void print() {
int value = 9;//how to access this variable
class Local {
int value = 11;
void print() {
int value = 13;
System.out.println("Value in method: " + value);
System.out.println("Value in local class: " + this.value);
System.out.println("Value in method of outer class: " + value);//here
System.out.println("Value in outer class: " + Out.this.value);
}
}
}
}

上面的代码描述了我的问题。

最佳答案

根本不能,因为它需要传递到 Local 的构造函数中,因为它不是类的成员字段,而是本地方法变量。

按照Andy的建议,你可以使用不同的名称将其设为final,在这种情况下,编译器会将其隐式传递给Local构造函数,并将其保存为Local的成员字段(你可以使用javap查看详细信息)。

关于java - 隐藏变量并访问它们?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30046247/

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