在 Java 中将整数值分配给 Float 包装器

发布于 2024-09-18 00:01:35 字数 265 浏览 13 评论 0原文

以下方法有效

float a=3;

,但以下方法无效:

Float a=3;

3 不应该自动提升为 float (因为加宽转换不需要显式转换),然后装箱为 Float 类型吗?

是因为我在 Khalid Mogul 的 Java 书中读到的规则吗?

无法遵循扩大转化 通过任何拳击转换

The following works

float a=3;

but the following doesn't:

Float a=3;

Shouldn't 3 be automatically promoted to float (as widening conversions don't require an explicit cast) and then Boxed to Float type ?

Is it because of a rule I read in Khalid Mogul's Java book ?

Widening conversions can't be followed
by any boxing conversions

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

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

发布评论

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

评论(3

戏舞 2024-09-25 00:01:35

Float a=3; 不起作用的原因是编译器将 3 包装到它的 Integer 对象中(本质上,编译器这样做:Float a = new Integer(3); 这已经是一个编译器错误)。 Float 对象不是 Integer 对象(即使它们来自同一个 Number 对象)。

以下作品:

Number a = 3;

本质上由编译器翻译为:

Number a = new Integer(3);

或如 Joachim Sauer 提到的,

Number a = Integer.valueOf(3);

希望这会有所帮助。

The reason why Float a=3; won't work is because the compiler wraps the 3 into it's Integer object (in essence, the compiler does this: Float a = new Integer(3); and that's already a compiler error). Float object isn't and Integer object (even though they come from the same Number object).

The following works:

Number a = 3;

which in essence is translated by the compiler as:

Number a = new Integer(3);

or as Joachim Sauer mentioned,

Number a = Integer.valueOf(3);

Hope this helps.

━╋う一瞬間旳綻放 2024-09-25 00:01:35
Float               Integer
  ^                    ^
  |                    |
  |                    |
  v                    v
float <----------->   int

基元和包装器之间存在装箱/拆箱转换,并且存在从一个数字基元到另一个数字基元的提升。但 Java 无法进行两次此转换(在您的情况下,从 int 转换为 Float)。

Float               Integer
  ^                    ^
  |                    |
  |                    |
  v                    v
float <----------->   int

There is a boxing/unboxing conversion betwen the primitive and the wrapper, and there is a promotion from one numeric primitive to another. But Java is not able to make this conversion twice (convert from int to Float, in your case).

魔法唧唧 2024-09-25 00:01:35

浮点数a=3.0f;会起作用的。

Float a= 3.0f; will work.

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