Java反射:java.lang.reflect.Field.getDouble(object)的内部

发布于 2024-11-28 09:46:47 字数 67 浏览 0 评论 0原文

有谁知道 Field.getDouble(Object) 是否在内部装箱和取消装箱双精度?

谢谢, RB

Does anyone know if Field.getDouble(Object) boxes and unboxes a double internally?

Thanks,
RB

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

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

发布评论

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

评论(2

爱的故事 2024-12-05 09:46:47

如果您在 double 字段上使用 Field.getDouble(),则不会自动装箱/拆箱。这种方法早在可用之前就已经存在了。

If you use Field.getDouble() on a double field, there is no auto boxing/unboxing. This method existed long before this was available.

往事风中埋 2024-12-05 09:46:47

根据 Sun/Oracle Reflection API 教程

当使用反射时,类型检查仅在运行时发生,因此
没有机会装箱该值。 ...为了消除这个异常,
有问题的行应替换为以下调用
Field.set(Object obj, Object value): f.set(ft, new Integer(43));

Per the Sun/Oracle Reflection API tutorial:

When using reflection, type checking only occurs at runtime so there
is no opportunity to box the value. ...To eliminate this exception,
the problematic line should be replaced by the following invocation of
Field.set(Object obj, Object value): f.set(ft, new Integer(43));

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