用户态自动装箱?

发布于 2024-07-08 00:22:49 字数 260 浏览 8 评论 0原文

是否可以为您自己的类实现自动装箱?

为了说明我的例子,这就是我可能想要写的:

Foo foo = "lolcat";

这就是 Java 会在幕后做的事情(根据我自己的定义,在某个地方,以某种方式):

Foo foo = new Foo();
foo.setLolcat("lolcat");

那么,这是否可能以某种方式实现,或者它是 JVM-仅功能?

Is it possible to implement autoboxing for your own classes?

To illustrate my example, this is what I might want to write:

Foo foo = "lolcat";

And this is what Java would do (as per my own definitions, somewhere, somehow), under the hood:

Foo foo = new Foo();
foo.setLolcat("lolcat");

So, is this possible somehow, or is it a JVM-feature only?

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

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

发布评论

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

评论(1

攒一口袋星星 2024-07-15 00:22:49

不,java不支持运算符重载(http://en.wikipedia.org/wiki/Operator_overloading)。

自动装箱是一项编译器功能,不适用于您自己的类。

其推理解释如下:
http://www.cafeaulait.org/javafaq.html#xtocid1902938

No, java does not support operator overloading (http://en.wikipedia.org/wiki/Operator_overloading).

Autoboxing is a compiler feature and not available for your own classes.

The reasoning is explained here:
http://www.cafeaulait.org/javafaq.html#xtocid1902938

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