一.完整代码 public class BigInteger { int sing; byte[] val; public BigInteger(int val){ // 将传递的初始值,按位取值,存入字节数组中 int val2 = val; int i=0; while(val/2!=0){ val = val/2; i++; } i++; this.val = new byte[i]; int j=0; while(val2/2!=0){ this.val[j++] = (byte) (v