Double.isNaN()方法怎么用?括号里可以填什么?
发布网友
发布时间:2022-04-23 21:25
我来回答
共1个回答
热心网友
时间:2022-04-23 22:54
1、没错
2、因为b是明显的String
static boolean
isNaN(double v)Returns true if the specified number is a
Not-a-Number (NaN) value, false otherwise.
3、
if(Double.isNaN(0.0 / 0.0)){
System.out.println(a+" is not a number!");
}else{
System.out.println(a+" is a number.");
}