java.math.BigInteger.min(BigInteger val) 返回BigInteger和val的最小值。
以下是java.math.BigInteger.min()方法的宣告
public BigInteger min(BigInteger val)
val - 值是要計算最小值
此方法返回BigInteger,其值是BigInteger和val的最小值。如果它們相等,或者可以被返回。
NA
下面的例子顯示math.BigInteger.min()方法的用法
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 min value of bi1, bi2 to bi3 bi3 = bi1.min(bi2); String str = "Minimum Value among " + bi1 + " and "+ bi2+" is "+ bi3; // print the minimum value System.out.println( str ); } }
讓我們編譯和執行上面的程式,這將產生以下結果:
Minimum Value among 123 and 1000 is 123