如果此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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。