java math max
数学类静态double max(double d1,double d2) (Math Class static double max(double d1,double d2) )
This method is available in java.lang package.
此方法在java.lang包中可用。
This method is used to return the maximum one of both the given arguments in the method or in other words it returns the largest value of the given two arguments.
此方法用于返回方法中两个给定参数中的最大值,换句话说,它返回给定两个参数中的最大值。
This is a static method so it is accessible with the class name too.
这是一个静态方法,因此也可以使用类名进行访问。
The return type of this method is double, it returns the largest element from the given two arguments (which are of double types).
此方法的返回类型为double ,它从给定的两个参数(均为double类型)中返回最大的元素。
In this method, we pass two double values parameters as an argument.
在此方法中,我们传递两个双精度值参数作为参数。
This method does not throw any exception.
此方法不会引发任何异常。
Syntax:
句法:
public static double max(double d1, double d2){
}
Parameter(s): double d1, double d2 – two double values, in which we have to find the largest value.
参数: double d1,double d2 –两个double值,我们必须在其中找到最大值。
Return value:
返回值:
The return type of this method is double, it returns the largest/maximum value.
此方法的返回类型为double ,它返回最大值/最大值。
Note:
注意:
If we pass "NaN", it returns "NaN".
如果我们传递“ NaN”,则返回“ NaN”。
If we pass the same value as both parameters, it returns the same value.
如果我们为两个参数传递相同的值,则它将返回相同的值。
Java程序演示max(double d1,double d2)方法的示例 (Java program to demonstrate example of max(double d1, double d2) method)
// Java program to demonstrate the example of
// max(double d1, double d2) method of Math Class
public class MaxDoubleTypeMethod {
public static void main(String[] args) {
// declaring the variables
double d1 = -0.0;
double d2 = 0.0;
double d3 = -0.6;
double d4 = 124.68;
// displaying the values
System.out.println("d1: " + d1);
System.out.println("d2: " + d2);
System.out.println("d3: " + d3);
System.out.println("d4: " + d4);
// Here , we will get (0.0) because we are
// passing parameter whose value is (-0.0,0.0)
System.out.println("Math.max(d1,d2): " + Math.max(d1, d2));
// Here , we will get (124.68) and we are
// passing parameter whose value is (0.0,124.68)
System.out.println("Math.max(d2,d4): " + Math.max(d2, d4));
}
}
Output
输出量
E:\Programs>javac MaxDoubleTypeMethod.java
E:\Programs>java MaxDoubleTypeMethod
d1: -0.0
d2: 0.0
d3: -0.6
d4: 124.68
Math.max(d1,d2): 0.0
Math.max(d2,d4): 124.68
翻译自: https://www.includehelp.com/java/math-class-static-double-max-double-d1-double-d2-with-example.aspx
java math max