Java.math.BigInteger.equals() 方法

描述

java.math.BigInteger.equals(Object x) 将此 BigInteger 与指定的 Object 进行比较是否相等。


声明

以下是 java.math.BigInteger.equals() 方法的声明。

public boolean equals(Object x)

覆盖

等于类对象


参数

x − 此 BigInteger 要与之比较的对象。


返回值

当且仅当指定的 Object 是一个 BigInteger,其值在数值上等于此 BigInteger 时,此方法才返回 true。


异常

NA


示例

下面的例子展示了 math.BigInteger.equals() 方法的使用。

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("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