java.math.BigInteger.max(BigInteger val) 返回此BigInteger和val的最大值。
以下是java.math.BigInteger.max()方法的宣告
public BigInteger max(BigInteger val)
val - 與計算的值的最大值
此方法返回BigInteger,其值是this和Val就越大。如果它們相等,或者可以被返回。
NA
下面的例子顯示math.BigInteger.max()方法的用法
package com.yiibai; import java.math.*; public class BigIntegerDemo { public static void main(String[] args) { // create 3 BigInteger objects BigInteger bi1, bi2, bi3; bi1 = new BigInteger("123"); bi2 = new BigInteger("1000"); // assign the max value of bi1, bi2 to bi3 bi3 = bi1.max(bi2); String str = "Maximum Value among " + bi1 + " and "+ bi2+" is "+ bi3; // print the maximum value System.out.println( str ); } }
讓我們編譯和執行上面的程式,這將產生以下結果:
Maximum Value among 123 and 1000 is 1000