Java.math.BigInteger.equals() 方法



描述

java.math.BigInteger.equals(Object x) 将此 BigInteger 与指定的 Object 进行比较以判断相等性。

声明

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

public boolean equals(Object x)

覆盖

Object 类中的 equals。

参数

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

返回值

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

异常

不适用

示例

以下示例演示了 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
java_math_biginteger.htm
广告