
- 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.max() Method
Description
The java.lang.StrictMath.max(double a, double b) method returns greater of two double values.
If the arguments have the same value, the result is that same value. If either value is NaN, then the result is NaN.
This method considers negative zero to be strictly smaller than positive zero. If one argument is positive zero and the other negative zero, the result is positive zero.
Declaration
Following is the declaration for java.lang.StrictMath.max() method
public static double max(double a, double b)
Parameters
a − This is the double value.
b − This is another double value.
Return Value
This method returns the larger of a and b.
Exception
NA
Example
The following example shows the usage of java.lang.StrictMath.max() method.
package com.tutorialspoint; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { double d1 = 85 , d2 = 20, d3 = -10; // both positive values double maxValue = StrictMath.max(d1, d2); System.out.println("StrictMath.max(85, 20) : " + maxValue); // one positive and one negative value maxValue = StrictMath.max(d1, d3); System.out.println("StrictMath.max(85, -10) : " + maxValue); } }
Let us compile and run the above program, this will produce the following result −
StrictMath.max(85, 20) : 85.0 StrictMath.max(85, -10) : 85.0
java_lang_strictmath.htm
Advertisements