Java Float isNaN()方法在Java中的应用与实例

Java Float isNaN()方法在Java中的应用与实例

Float类中的 Float.isNaN() 方法是Java中的一个内置方法,如果该Float值或指定的float值不是一个数字(NaN),则返回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()

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程