当前位置: 技术问答>java相关
java中数据类型的问题
来源: 互联网 发布时间:2015-02-22
本文导语: 我在程序中写了:float i =222.222;编译时错误提示: possible loss of precision found : double required: float 我改为 double i=222.222,编译通过,为什么。 | the default type for floating point numeric literals ...
我在程序中写了:float i =222.222;编译时错误提示:
possible loss of precision
found : double
required: float
我改为 double i=222.222,编译通过,为什么。
possible loss of precision
found : double
required: float
我改为 double i=222.222,编译通过,为什么。
|
the default type for floating point numeric literals is "double", try
float i = 222.222F;
float i = 222.222F;