當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java BigInteger max()用法及代碼示例


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


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java BigInteger Class | max() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。