如何从Java对象内部访问静态变量?

发布于 2024-12-03 16:46:45 字数 242 浏览 2 评论 0原文

在类内部,如何显式访问静态变量? (是显式访问静态变量的最佳实践,例如使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不爱素颜 2024-12-10 16:46:45

我建议你尽可能使用最简单、最清晰的代码。大多数时候这是一个判断,如果你正在与人一起工作,你可以询问他们。

如果可能的话,我会避免使用可变静态字段。但是,在这种情况下你可以写

protected static Type s_var1; // a convention for static mutable fields

public Type somefunc() {
    return Something.s_var1; // Has to be a static field.
}

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

protected static Type s_var1; // a convention for static mutable fields

public Type somefunc() {
    return Something.s_var1; // Has to be a static field.
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文