Java.math.BigInteger.equals()方法实例
java.math.BigInteger.equals(Object x) 比较此BigInteger与指定对象是否相等。
声明
以下是java.math.BigInteger.equals()方法的声明
public boolean equals(Object x)
覆盖
equals在类Object中
参数
-
x - 与BigInteger比较的对象
返回值
当且仅当指定的对象Object是一个BigInteger,其值在数值上等于此BigInteger此方法返回true。
异常
-
NA
例子
下面的例子显示math.BigInteger.equals()方法的用法
package com.yiibai; import java.math.*; public class BigIntegerDemo { public static void main(String[] args) { // create 2 BigInteger objects BigInteger bi1, bi2; bi1 = new BigInteger("123"); bi2 = new BigInteger("123"); // create 2 boolean objects Boolean b1, b2; // compare bi1 with bi2 b1 = bi1.equals(bi2); // compare bi1 with an object value 123, which is not a BigIntger b2 = bi1.equals("123"); String str1 = bi1 + " equals BigInteger " + bi2 + " is " +b1; String str2 = bi1 + " equals object value 123 is " +b2; // print b1, b2 values System.out.println( str1 ); System.out.println( str2 ); } }
让我们编译和运行上面的程序,这将产生以下结果:
123 equals BigInteger 123 is true 123 equals object value 123 is false