次のコードを動かすとThe constructor BigInteger(long) is not visibleというエラーが出ます。
やりたいのは、有限体FqをF2[x]/f(x)で実装することです。そのために、BigIntegerの各ビットを各次数の係数とみなして演算を行うクラスを作成しようとしています。加算や掛け算をBigIntegerの関数をオーバーライドすることで作ろうと思っています。The constructor BigInteger(long) is not visibleというエラーの対処法を教えてください。
Java
1class Fq extends BigInteger { 2 static int deg; 3 static int irrPoly; 4 public Fq(int poly) { 5 super((long)poly); 6 } 7 void setDegree(int d) { 8 deg=d; 9 irrPoly=new int[]{1,2,5,11,23}[d]; 10 } 11} 12
エラーそのままで検索して出てくる情報では何が足りませんでしたか?
回答1件
あなたの回答
tips
プレビュー