Java Math.nextUp(float f)

Syntax

Math.nextUp(float f) has the following syntax.

public static float nextUp(float f)

Example

In the following code shows how to use Math.nextUp(float f) method.


//from w  w w .ja  va 2  s  . c  o  m
public class Main {

   public static void main(String[] args) {

      float x = 12345.123f;
      float y = 123.123456f;

      // print the next floating numbers towards positive infinity
      System.out.println("Math.nextUp(" + x + ")=" + Math.nextUp(x));
      System.out.println("Math.nextUp(" + y + ")=" + Math.nextUp(y));

   }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    java.lang »




Boolean
Byte
Character
Class
Double
Enum
Float
Integer
Long
Math
Number
Object
Package
Process
ProcessBuilder
Runnable
Runtime
SecurityManager
Short
StackTraceElement
StrictMath
String
StringBuffer
StringBuilder
System
Thread
ThreadGroup
ThreadLocal
Throwable