
- 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.rint() Method
Description
The java.lang.StrictMath.rint() method returns the double value that is closest in value to the argument and is equal to a mathematical integer. If two double values that are mathematical integers are equally close to the value of the argument, the result is the integer value that is even.It include these cases −
- If the argument value is already equal to a mathematical integer, then the result is the same as the argument.
- If the argument is NaN or an infinity or positive zero or negative zero, then the result is the same as the argument.
Declaration
Following is the declaration for java.lang.StrictMath.rint() method
public static double rint(double a)
Parameters
a − This is the value to be used.
Return Value
This method returns the closest floating-point value to a that is equal to a mathematical integer.
Exception
NA
Example
The following example shows the usage of java.lang.StrictMath.rint() method.
package com.tutorialspoint; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { double d1 = 6.1 , d2 = 57.5 , d3 = 9.7; /* returns the double value that is close to the argument and is equal to a mathematical integer. */ double rintValue = StrictMath.rint(d1); System.out.println("integer value closest to " + d1 + " = " + rintValue); rintValue = StrictMath.rint(d2); System.out.println("integer value closest to " + d2 + " = " + rintValue); rintValue = StrictMath.rint(d3); System.out.println("integer value closest to " + d3 + " = " + rintValue); } }
Let us compile and run the above program, this will produce the following result −
integer value closest to 6.1 = 6.0 integer value closest to 57.5 = 58.0 integer value closest to 9.7 = 10.0
java_lang_strictmath.htm
Advertisements