Java反射:java.lang.reflect.Field.getDouble(object)的内部
有谁知道 Field.getDouble(Object) 是否在内部装箱和取消装箱双精度?
谢谢, RB
Does anyone know if Field.getDouble(Object) boxes and unboxes a double internally?
Thanks,
RB
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您在 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.根据 Sun/Oracle Reflection API 教程:
Per the Sun/Oracle Reflection API tutorial: