当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。