Java中BigInteger的各种方法详解

顾名思义,BigInteger就是用于处理题目中涉及到大整数的加减乘除运算。

文章目录

    • ·int 与 BigInteger之间的相互转化
    • ·错误案例:BigInteger 与 int 之间不能直接相互转化
    • ·BigInteger的常用方法

·int 与 BigInteger之间的相互转化

import java.math.BigInteger;
public class Demo1{
    public static void main(String[] args){
        //int 与 BigInteger之间的正确转换方法:
        //int 转换为 BigInteger的方法:
        int p = 1;
        BigInteger a = BigInteger.valueOf(p);
        //BigInteger 转换为 int的方法:
        BigInteger d = new BigInteger("9");
        int temp = d.intValue();*/
    }
}

·错误案例:BigInteger 与 int 之间不能直接相互转化

import java.math.BigInteger;
public class Demo2{
    public static void main(String[] args){
        BigInteger temp = new BigInteger("9");
        int a = 1;
        System.out.println(temp+a);
    }
}

·BigInteger的常用方法

import java.math.BigInteger;
public class Demo3{
    public static void main(String[] args){
        //常用方法:
        BigInteger temp = new BigInteger("9");
        BigInteger temp1 = new BigInteger("6");
        BigInteger temp2 = new BigInteger("-6");
        //add();-------加法
        System.out.println(temp.add(temp1));
        //subtract();-------减法
        System.out.println(temp.subtract(temp1));
        //multiply()-------乘法
        System.out.println(temp.multiply(temp1));
        //divide()-------相除取整
        System.out.println(temp.divide(temp1));
        //remainder()与mod()-------取余
        System.out.println(temp.remainder(temp1));
        System.out.println(temp.mod(temp1));
        //negate()------取相反数
        System.out.println(temp.negate());
        //abs()------取绝对值
        System.out.println(temp2.abs());
        //min(),max()------取最大与最小值
        System.out.println(temp1.min(temp2));
        System.out.println(temp1.max(temp2));
        //gcd()------取最大公约数
        System.out.println(temp1.gcd(temp));
    }
}

你可能感兴趣的:(Java_Basic)