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