关于NaN?

JackJia 2002-12-06 11:35:52
class A{
public static void main(String [] args)
{
float ff;
ff=(int)java.lang.Math.sqrt(-11.0);
System.out.prinln(ff);
}
}

sqrt(-11),为何编译、运行均无错误?且输出0?
...全文
47 4 打赏 收藏 转发到动态 举报
写回复
用AI写文章
4 条回复
切换为时间正序
请发表友善的回复…
发表回复
Anubis12345 2002-12-13
  • 打赏
  • 举报
回复
Some methods in java.lang.Math will not throw an Exception ,like
Math.sqrt(): If the argument is NaN or less than zero, the result is NaN.
If you want to pass SCJP with a high score ,you'd better remember
the methods that throw certain Excepion.
And a double number will be casted into an unkown int sometimes.
JackJia 2002-12-10
  • 打赏
  • 举报
回复
up
JackJia 2002-12-08
  • 打赏
  • 举报
回复
不明白
Winuxava 2002-12-07
  • 打赏
  • 举报
回复
如果参数是负数,则返回一个NaN(Not a Number)。
NaN的类型是double,显示转换为int,损失些精度,再赋给float,编译和运行当然没问题。
至于解释为什么是0 ……你首先得知道-11.0的二进制表示(IEEE-754),然
后当参数传递给java.lang.Double.longBitsToDouble(long bits),计算结果
再转换为int,然后再转换为float。 浮点数的表示很烦……不记得

50,725

社区成员

发帖
与我相关
我的任务
社区描述
Java相关技术讨论
javaspring bootspring cloud 技术论坛(原bbs)
社区管理员
  • Java相关社区
  • 小虚竹
  • 谙忆
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧