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


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


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


相關用法


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