BigInteger類max()方法
- max() 方法可在
java.math
包。 - max() 方法用於從兩個比較對象(此 BigInteger 和 BigInteger val)中獲取最高值。
- max() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
- max() 方法返回最大值時不拋出異常。
用法:
public BigInteger max(BigInteger val);
參數:
BigInteger val
– 表示要與此對象進行比較以查找最大值的對象。
返回值:
這個方法的返回類型是BigInteger
,它返回兩個比較對象中任何一個的最大值。
例:
// Java program to demonstrate the example
// of BigInteger max(BigInteger val) method of BigInteger
import java.math.*;
public class MaxOfBI {
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);
// returns the BigInteger that holds the maximum
// value in both of the compared object
// i.e. 100.max(80) it returns 100
BigInteger max_val = b_int1.max(b_int2);
System.out.println("b_int1.max(b_int2):" + max_val);
}
}
輸出
b_int1:100 b_int2:80 b_int1.max(b_int2):100
相關用法
- Java BigInteger max()、min()用法及代碼示例
- Java BigInteger multiply()用法及代碼示例
- Java BigInteger modPow()用法及代碼示例
- Java BigInteger modInverse()用法及代碼示例
- Java BigInteger mod()用法及代碼示例
- Java BigInteger 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 | max() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。