
- Java.lang Package classes
- Java.lang - Home
- Java.lang - Boolean
- Java.lang - Byte
- Java.lang - Character
- Java.lang - Character.Subset
- Java.lang - Character.UnicodeBlock
- Java.lang - Class
- Java.lang - ClassLoader
- Java.lang - Compiler
- Java.lang - Double
- Java.lang - Enum
- Java.lang - Float
- Java.lang - InheritableThreadLocal
- Java.lang - Integer
- Java.lang - Long
- Java.lang - Math
- Java.lang - Number
- Java.lang - Object
- Java.lang - Package
- Java.lang - Process
- Java.lang - ProcessBuilder
- Java.lang - Runtime
- Java.lang - RuntimePermission
- Java.lang - SecurityManager
- Java.lang - Short
- Java.lang - StackTraceElement
- Java.lang - StrictMath
- Java.lang - String
- Java.lang - StringBuffer
- Java.lang - StringBuilder
- Java.lang - System
- Java.lang - Thread
- Java.lang - ThreadGroup
- Java.lang - ThreadLocal
- Java.lang - Throwable
- Java.lang - Void
- Java.lang Package extras
- Java.lang - Interfaces
- Java.lang - Errors
- Java.lang - Exceptions
- Java.lang Package Useful Resources
- Java.lang - Useful Resources
- Java.lang - Discussion
Java.lang.StrictMath.nextUp() Method
Description
The java.lang.StrictMath.nextUp(double d) method returns the floating-point value adjacent to d in the direction of positive infinity. This method is semantically equivalent to nextAfter(d, Double.POSITIVE_INFINITY).A nextUp implementation may run faster than its equivalent nextAfter call. It include these cases −
- If either argument is a NaN, then NaN is returned.
- If the argument is positive infinity, the result is positive infinity.
- If the argument is zero, the result is Double.MIN_VALUE
Declaration
Following is the declaration for java.lang.StrictMath.nextUp() method
public static double nextUp(double d)
Parameters
d − This is the starting floating-point value.
Return Value
This method returns the adjacent floating-point value closer to positive infinity.
Exception
NA
Example
The following example shows the usage of java.lang.StrictMath.nextUp() method.
package com.tutorialspoint; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { double d1 = 95.1200000000000 , d2 = 49.32; // returns the floating-point value adjacent to d1 double nextUpValue = StrictMath.nextUp(d1); System.out.println("Next upper value of d1 : " + nextUpValue); // returns the floating-point value adjacent to d2 nextUpValue = StrictMath.nextUp(d2); System.out.println("Next upper value of d2 : " + nextUpValue); } }
Let us compile and run the above program, this will produce the following result −
Next upper value of d1 : 95.12000000000002 Next upper value of d2 : 49.32000000000001
java_lang_strictmath.htm
Advertisements