java – 将科学符号解释为int还是float?

前端之家收集整理的这篇文章主要介绍了java – 将科学符号解释为int还是float?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我使用科学符号(例如1e9)在我的代码中编码一个数字,该数字的类型将是(int,long,float,double ..)?

当有效位数或指数为浮点数时,显然不能是整数,但在上述情况下呢?

解决方法

e使它成为一个浮点文字.从JLS( §3.10.2. Floating-Point Literals):

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).

因此,1e9类型为double,为1e9d.另一方面,1e9f是浮点型.

原文链接:https://www.f2er.com/java/125073.html

猜你在找的Java相关文章