gpt4 book ai didi

java - 从 double 到 float 错误的可能有损转换

转载 作者:行者123 更新时间:2023-11-30 06:40:25 24 4
gpt4 key购买 nike

关闭。这个问题需要debugging details .它目前不接受答案。












想改进这个问题?将问题更新为 on-topic对于堆栈溢出。

4年前关闭。




Improve this question




我在浮点数据类型中采用 r=7.5。它显示以下错误
enter image description here

任何人都可以帮助我为什么它显示错误?

最佳答案

JLS 3.10.2 ,定义浮点字面量形式:

A floating-point literal is of type float if it is suffixed with an ASCII
letter F or f;otherwise its type is double and it can optionally be suffixed
with an ASCII letter D or d (§4.2.3).

所以 float r=7.5不正确,因为 7.5是 double 型,不赋值给浮点型 r .您可以将其更改为 float r=7.5f' or 'double r=7.5

关于java - 从 double 到 float 错误的可能有损转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44448571/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com