java.lang.Math.max(int a, int b)方法實例
java.lang.Math.max(int a, int b) 返回兩個int值的較大那個參數值。即,其結果是該參數接近正無窮大。如果該參數具有相同的值,其結果是相同的值。如果任一值為NaN,那麼結果為NaN。與數值比較運算不同,該方法認為負零嚴格小於正零。如果一個參數是正零和其他負0,那麼結果為正零。
聲明
以下是java.lang.Math.max()方法聲明
public static int max(int a, int b)
參數
-
a -- 參數
-
b -- 另一個參數
返回值
此方法返回a和b之中的最大值。
異常
-
NA
例子
下麵的例子顯示lang.Math.max()方法的使用。
package com.yiibai; import java.lang.*; public class MathDemo { public static void main(String[] args) { // get two integer numbers int x = 60984; int y = 1000; // print the larger number between x and y System.out.println("Math.max(" + x + "," + y + ")=" + Math.max(x, y)); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Math.max(60984, 1000)=60984