如果此Float值或指定的float值为Not-a-Number(NaN),则Float类中的Float.isNaN()方法是Java的内置方法,返回true,否则返回false。
用法:
public boolean isNaN() or public static boolean isNaN(float val)
参数:函数接受单个参数val,该参数指定当直接使用Float类作为静态方法调用时要检查的值。当该方法用作实例方法时,不需要该参数。
返回值:如果val是NaN,则返回true;否则返回false。
以下程序说明了Java中的isNaN()方法:
示例1:使用静态isNaN()方法
// Java code to demonstrate
// Float isNaN() method
// without parameter
class GFG {
public static void main(String[] args)
{
// first example
Float f1 = new Float(1.0 / 0.0);
boolean res = f1.isNaN();
// printing the output
if (res)
System.out.println(f1 + " is NaN");
else
System.out.println(f1 + " is not NaN");
// second example
f1 = new Float(0.0 / 0.0);
res = f1.isNaN();
// printing the output
if (res)
System.out.println(f1 + " is NaN");
else
System.out.println(f1 + " is not NaN");
}
}
输出:
Infinity is not NaN NaN is NaN
示例2:使用非静态isNaN()方法
// Java code to demonstrate
// Float isNaN() method
// with parameter
class GFG {
public static void main(String[] args)
{
// first example
Float f1 = new Float(1.0 / 0.0);
boolean res = f1.isNaN(f1);
// printing the output
if (res)
System.out.println(f1 + " is NaN");
else
System.out.println(f1 + " is not NaN");
// second example
f1 = new Float(0.0 / 0.0);
res = f1.isNaN(f1);
// printing the output
if (res)
System.out.println(f1 + " is NaN");
else
System.out.println(f1 + " is not NaN");
}
}
输出:
Infinity is not NaN NaN is NaN
参考: https://docs.oracle.com/javase/7/docs/api/java/lang/Float.html#isNaN()
相关用法
- Java Double isNaN()用法及代码示例
- Java Floats.indexOf(float[] array, float target)用法及代码示例
- Java Floats.indexOf(float[] array, float[] target)用法及代码示例
- Java Float parseFloat()用法及代码示例
- Java Float compare()用法及代码示例
- Java Float compareTo()用法及代码示例
- Java Float intValue()用法及代码示例
- Java Float floatToRawIntBits()用法及代码示例
- Java Float equals()用法及代码示例
- Java Float hashCode()用法及代码示例
- Java Float doubleValue()用法及代码示例
- Java Float isInfinite()用法及代码示例
- Java Float byteValue()用法及代码示例
- Java Float shortValue()用法及代码示例
- Java Float floatToIntBits()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Float isNaN() method in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。