Java-math-biginteger-modpow

提供:Dev Guides
移動先:案内検索

Java.math.BigInteger.modPow()メソッド

説明

  • java.math.BigInteger.modPow(BigInteger exponent、BigInteger m)*は、値が(this ^ exponent ^ mod m)であるBigIntegerを返します。 Powとは異なり、この方法では負の指数を使用できます。

宣言

以下は* java.math.BigInteger.modPow()*メソッドの宣言です。

public BigInteger modPow(BigInteger exponent, BigInteger m)

パラメーター

  • exponent -指数。
  • m -モジュラス。

戻り値

このメソッドは、値がthis ^ exponent ^ mod mであるBigIntegerオブジェクトを返します。

例外

*ArithmeticException* -m≤0または指数が負で、このBigIntegerがmに対して比較的素でない場合。

次の例は、math.BigInteger.modPow()メソッドの使用法を示しています。

package com.finddevguides;

import java.math.*;

public class BigIntegerDemo {

   public static void main(String[] args) {

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

     //create a BigInteger exponent
      BigInteger exponent = new BigInteger("2");

      bi1 = new BigInteger("7");
      bi2 = new BigInteger("20");

     //perform modPow operation on bi1 using bi2 and exp
      bi3 = bi1.modPow(exponent, bi2);

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

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

上記のプログラムをコンパイルして実行すると、次の結果が生成されます-

7^2 mod 20 is 9