在java中通过ref传递枚举

发布于 2024-09-28 18:27:29 字数 35 浏览 2 评论 0原文

如何在java中通过引用传递枚举参数?有什么解决办法吗?

How can i pass enum parameter by reference in java? Any solution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

属性 2024-10-05 18:27:29

Java 总是按值传递。

您传递引用,而不是对象。引用是按值传递的。

您可以更改引用在传入的函数中指向的可变对象的状态,但不能更改引用本身。

Java is pass by value - always.

You pass references, not objects. References are passed by value.

You can change the state of a mutable object that the reference points to in a function that it is passed into, but you cannot change the reference itself.

§对你不离不弃 2024-10-05 18:27:29

在 Java 中,不能通过引用传递任何参数。

我能想到的唯一解决方法是创建一个包装类,并包装一个枚举。

public class EnumReference {
    public YourEnumType ref;
}

然后你可以像这样使用它:

public void someMethod(EnumReference reference) {
    reference.ref = YourEnumType.Something;
}

现在,引用将包含你的枚举的不同值;本质上是模仿引用传递。

In Java you cannot pass any parameters by reference.

The only workaround I can think of would be to create a wrapper class, and wrap an enum.

public class EnumReference {
    public YourEnumType ref;
}

And then you would use it like so:

public void someMethod(EnumReference reference) {
    reference.ref = YourEnumType.Something;
}

Now, reference will contain a different value for your enum; essentially mimicking pass-by-reference.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文