BigInteger類min()方法
- min() 方法可在
java.math
包。 - min() 方法用於從比較對象(此 BigInteger 和 BigInteger val)中獲取最小值。
- min() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
- min() 方法返回最小值時不拋出異常。
用法:
public BigInteger min(BigInteger val);
參數:
BigInteger val
– 表示要與此對象進行比較以找到最小值的對象。
返回值:
這個方法的返回類型是BigInteger
,它返回兩個比較對象中任何一個的最小值。
例:
// Java program to demonstrate the example
// of BigInteger min(BigInteger val) method of BigInteger
import java.math.*;
public class MinOfBI {
public static void main(String args[]) {
// Initialize two variables str1 and str2
String str1 = "100";
String str2 = "80";
// Initialize two BigInteger objects
BigInteger b_int1 = new BigInteger(str1);
BigInteger b_int2 = new BigInteger(str2);
// Display b_int1 and b_int2
System.out.println("b_int1:" + b_int1);
System.out.println("b_int2:" + b_int2);
// return the BigInteger that holds the minimum
// value in both of the compared object
// i.e. 100.min(80) it returns 80
BigInteger min_val = b_int1.min(b_int2);
System.out.println("b_int1.min(b_int2):" + min_val);
}
}
輸出
b_int1:100 b_int2:80 b_int1.min(b_int2):80
相關用法
- Java BigInteger multiply()用法及代碼示例
- Java BigInteger modPow()用法及代碼示例
- Java BigInteger max()用法及代碼示例
- Java BigInteger modInverse()用法及代碼示例
- Java BigInteger mod()用法及代碼示例
- Java BigInteger max()、min()用法及代碼示例
- Java BigInteger xor()用法及代碼示例
- Java BigInteger intValueExact()用法及代碼示例
- Java BigInteger and()用法及代碼示例
- Java BigInteger andNot()用法及代碼示例
- Java BigInteger intValue()用法及代碼示例
- Java BigInteger flipBit()用法及代碼示例
- Java BigInteger or()用法及代碼示例
- Java BigInteger divideAndRemainder()用法及代碼示例
- Java BigInteger setBit()用法及代碼示例
- Java BigInteger isProbablePrime()用法及代碼示例
- Java BigInteger pow()用法及代碼示例
- Java BigInteger getLowestSetBit()用法及代碼示例
- Java BigInteger abs()用法及代碼示例
- Java BigInteger divide()用法及代碼示例
注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java BigInteger Class | min() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。