位置:首页 > Java技术 > Java.math包 > Java.math.BigInteger.modInverse()方法实例

Java.math.BigInteger.modInverse()方法实例

java.math.BigInteger.modInverse(BigInteger m) 返回一个BigInteger,其值是 (this-1 mod m).

声明

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

public BigInteger modInverse(BigInteger m)

参数

  • m - the modulus

返回值

该方法返回一个BigInteger对象的值是 this-1 mod m.

异常

  • ArithmeticException - 如果 m ≤ 0, 或此BigInteger没有乘法逆模m(即,此BigInteger不是互质到m)。

例子

下面的例子显示math.BigInteger.modInverse()方法的用法

package com.yiibai;

import java.math.*;

public class BigIntegerDemo {

public static void main(String[] args) {

        // create 3 BigInteger objects
        BigInteger bi1, bi2, bi3;

	// Two numbers are relatively prime if they have no
	// common factors, other than 1.
        bi1 = new BigInteger("7");
        bi2 = new BigInteger("20");

        // perform modInverse operation on bi1 using bi2
	bi3 = bi1.modInverse(bi2);

        String str = bi1 + "^-1 mod " + bi2 + " is " +bi3;

	// print bi3 value
	System.out.println( str );
    }
}

让我们编译和运行上面的程序,这将产生以下结果:

7^-1 mod 20 is 3