描述
这个java.math.BigInteger.compareTo(BigInteger val)将此 BigInteger 与指定的 BigInteger 进行比较。对于六个布尔比较运算符(<、==、>、>=、!=、<=)中的每一个,此方法优先于单独的方法提供。
执行这些比较的建议习惯用法是:(x.compareTo(y) <op> 0),其中 <op> 是六个比较运算符之一。
声明
以下是声明java.math.BigInteger.compareTo()方法。
public int compareTo(BigInteger val)
指定者
接口中的比较Comparable<BigInteger>。
参数
valâˆ' BigInteger 要与此 BigInteger 进行比较。
返回值
此方法返回 -1、0 或 1,因为此 BigInteger 在数字上小于、等于或大于 val。
异常
NA
示例
下面的例子展示了 math.BigInteger.compareTo() 方法的用法。
package com.tutorialspoint;
import java.math.*;
public class BigIntegerDemo {
public static void main(String[] args) {
// create 2 BigInteger objects
BigInteger bi1, bi2;
bi1 = new BigInteger("6");
bi2 = new BigInteger("3");
// create int object
int res;
// compare bi1 with bi2
res = bi1.compareTo(bi2);
String str1 = "Both values are equal ";
String str2 = "First Value is greater ";
String str3 = "Second value is greater";
if( res == 0 )
System.out.println( str1 );
else if( res == 1 )
System.out.println( str2 );
else if( res == -1 )
System.out.println( str3 );
}
}
让我们编译并运行上面的程序,这将产生以下结果——
First Value is greater
相关用法
- Java Java.math.BigInteger.clearBit()用法及代码示例
- Java Java.math.BigInteger.bitCount()用法及代码示例
- Java Java.math.BigInteger.shiftLeft()用法及代码示例
- Java Java.math.BigInteger.shiftRight()用法及代码示例
- Java Java.math.BigInteger.flipBit()用法及代码示例
- Java Java.math.BigInteger.modInverse()用法及代码示例
- Java Java.math.BigInteger.valueOf()用法及代码示例
- Java Java.math.BigInteger.add()用法及代码示例
- Java Java.math.BigInteger.not()用法及代码示例
- Java Java.math.BigInteger.multiply()用法及代码示例
- Java Java.math.BigInteger.min()用法及代码示例
- Java Java.math.BigInteger.toString()用法及代码示例
- Java Java.math.BigInteger.gcd()用法及代码示例
- Java Java.math.BigInteger.hashCode()用法及代码示例
- Java Java.math.BigInteger.and()用法及代码示例
- Java Java.math.BigInteger.divideAndRemainder()用法及代码示例
- Java Java.math.BigInteger.bitLength()用法及代码示例
- Java Java.math.BigInteger.probablePrime()用法及代码示例
- Java Java.math.BigInteger.isProbablePrime()用法及代码示例
- Java Java.math.BigInteger.mod()用法及代码示例
注:本文由纯净天空筛选整理自 Java.math.BigInteger.compareTo() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。