Java.math.BigInteger.compareTo()方法範例


java.math.BigInteger.compareTo(BigInteger val) 比較此BigInteger與指定的BigInteger。此方法優先於個別方法提供六個邏輯比較運算子 (<, ==, >, >=, !=, <=).

習慣用法執行這些比較的是:(x.compareTo(y) <op> 0),其中<op>是六個比較運算子之一。

宣告

以下是java.math.BigInteger.compareTo()方法的宣告

public int compareTo(BigInteger val)

Specified by

compareTo的介面 Comparable<BigInteger>

引數

  • val - 這個要比較的BigInteger

返回值

此方法返回-1,0或1,分類為BigInteger在數位上小於,等於,或大於值val。

異常

  • NA

例子

下面的例子顯示math.BigInteger.compareTo()方法的用法

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