zoukankan      html  css  js  c++  java
  • java-BigInteger类

    1、BigInteger类的概述和方法使用
      * A:BigInteger的概述
        * 可以让超过Integer范围内的数据进行运算
      * B:构造方法
        * public BigInteger(String val)
      * C:成员方法
        * public BigInteger add(BigInteger val)
        * public BigInteger subtract(BigInteger val)
        * public BigInteger multiply(BigInteger val)
        * public BigInteger divide(BigInteger val)
        * public BigInteger[] divideAndRemainder(BigInteger val)

    例:

     1 public class Demo4 {
     2 
     3     public static void main(String[] args) {
     4         
     5         BigInteger bi1 = new BigInteger("100");
     6         BigInteger bi2 = new BigInteger("2");
     7         
     8         System.out.println(bi1.add(bi2));                  //+
     9         System.out.println(bi1.subtract(bi2));             //-
    10         System.out.println(bi1.multiply(bi2));             //*
    11         System.out.println(bi1.divide(bi2));               ///(除)
    12         
    13         BigInteger[] arr = bi1.divideAndRemainder(bi2);    //取除数和余数
    14         
    15         for (int i = 0; i < arr.length; i++) {
    16             System.out.println(arr[i]);
    17         }
    18     }
    19 
    20 }
  • 相关阅读:
    MySQL优化
    数据库之事务
    浮动与定位的区别
    CSS-画三角
    CSS(中)篇
    CSS(前)篇
    html篇
    定位真机运行能用但是打包成apk就不能用的解决方法
    定位与权限
    activity与fragment之间的传递数据
  • 原文地址:https://www.cnblogs.com/hfumin/p/10194727.html
Copyright © 2011-2022 走看看