如何从Java对象内部访问静态变量?
在类内部,如何显式访问静态变量? (是显式访问静态变量的最佳实践,例如使用 static.staticVar)
以下内容有效
class Something {
protected static _var1;
public void somefunc() {
return _var1;
}
}
但是我如何显式指定它? (是否明确建议指定?)
From within the class, how do I access a static variable explicitly? (Is the best practice to access static variable explicitly eg. using static.staticVar)
The below works
class Something {
protected static _var1;
public void somefunc() {
return _var1;
}
}
But how do i specify it explicitly? (Is specifying explicitly recommended?)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议你尽可能使用最简单、最清晰的代码。大多数时候这是一个判断,如果你正在与人一起工作,你可以询问他们。
如果可能的话,我会避免使用可变静态字段。但是,在这种情况下你可以写
I suggest you do what is the simplest and clearest code you can. It a judgement call most of the time and if you are working with people you can ask them.
I avoid using a mutable static field if at all possible. However, in this case you can write