BigInteger類modInverse()方法
- modInverse() 方法可在
java.math
包。 - modInverse() 方法用於通過使用 (this BigInteger) mod 給定 BigInteger (val) 的倒數來計算 mod 倒數。
- modInverse() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
- modInverse() 方法可能在返回 mod inverse 時拋出異常。
算術異常:當給定的參數值為 0 或負值時,可能會拋出此異常。
用法:
public BigInteger modInverse(BigInteger val);
參數:
BigInteger val
– 表示用來計算模逆的對象。
返回值:
這個方法的返回類型是BigInteger
,它通過使用 [ inv (this BigInteger) mod (BigInteger val) ] 返回 mod 的逆值。
例:
// Java program to demonstrate the example
// of BigInteger modInverse(BigInteger val) method of BigInteger
import java.math.*;
public class ModInverseOfBI {
public static void main(String args[]) {
// Initialize three variables str1 , str2 and str3
String str1 = "101";
String str2 = "13";
String str3 = "10";
// Initialize three BigInteger objects
BigInteger b_int1 = new BigInteger(str1);
BigInteger b_int2 = new BigInteger(str2);
BigInteger b_int3 = new BigInteger(str3);
// Display b_int1 , b_int2 and b_int3
System.out.println("b_int1:" + b_int1);
System.out.println("b_int2:" + b_int2);
System.out.println("b_int3:" + b_int3);
System.out.println();
// Here, we are calculating modInverse between
// two BigInteger values [inv(this BigInteger
// b_int1) mod (BigInteger b_int3) ] by using
// modInverse(BigInteger) method
BigInteger modinv_val = b_int1.modInverse(b_int3);
System.out.println("b_int1.modInverse(b_int3):" + modinv_val);
// Here, we are calculating modInverse between
// two BigInteger values [inv(this BigInteger
// b_int2) mod (BigInteger b_int3) ] by using
// modInverse(BigInteger) method
modinv_val = b_int2.modInverse(b_int3);
System.out.println("b_int2.modInverse(b_int3):" + modinv_val);
}
}
輸出
b_int1:101 b_int2:13 b_int3:10 b_int1.modInverse(b_int3):1 b_int2.modInverse(b_int3):7
相關用法
- Java BigInteger modPow()用法及代碼示例
- Java BigInteger mod()用法及代碼示例
- Java BigInteger multiply()用法及代碼示例
- Java BigInteger max()用法及代碼示例
- Java BigInteger max()、min()用法及代碼示例
- Java BigInteger min()用法及代碼示例
- Java BigInteger xor()用法及代碼示例
- Java BigInteger intValueExact()用法及代碼示例
- Java BigInteger and()用法及代碼示例
- Java BigInteger andNot()用法及代碼示例
- Java BigInteger intValue()用法及代碼示例
- Java BigInteger flipBit()用法及代碼示例
- Java BigInteger or()用法及代碼示例
- Java BigInteger divideAndRemainder()用法及代碼示例
- Java BigInteger setBit()用法及代碼示例
- Java BigInteger isProbablePrime()用法及代碼示例
- Java BigInteger pow()用法及代碼示例
- Java BigInteger getLowestSetBit()用法及代碼示例
- Java BigInteger abs()用法及代碼示例
- Java BigInteger divide()用法及代碼示例
注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java BigInteger Class | modInverse() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。