常用API

MATH:帮助我们进行数学计算的工具类 里面的方法都是静态的

        //abs 获取绝对值
        System.out.println(Math.abs(88));
        System.out.println(Math.abs(-88));
        //ceil向上取整
        System.out.println(Math.ceil(-12.12));
        System.out.println(Math.ceil(12.12));
        //floor向下取整
        System.out.println(Math.floor(-12.12));
        System.out.println(Math.floor(12.12));
        //四舍五入
        System.out.println(Math.round(12.34));
        System.out.println(Math.round(12.54));
        System.out.println(Math.round(-12.34));
        System.out.println(Math.round(-12.54));
        //获取两个整数最大最小值
        System.out.println(Math.max(6,8));
        System.out.println(Math.min(6,8));
        //获取a的b次幂
        System.out.println(Math.pow(2,-2));
        //获取0-1之间随机数
        System.out.println(Math.random());

获取任意数字的个位十位白位置千位

        //10000-99999
        for (int i = 10000; i < 99999; i++) {
            int ge = i%10;
            int shi = i/10%10;
            int bai = i/100%10;
            int qian = i/1000%10;
            int wan = i/10000;
            if (i == Math.pow(bai,5)+Math.pow(shi,5)+Math.pow(ge,5)+Math.pow(qian,5)+Math.pow(wan,5)){
                System.out.println(i);
            }

        }

System:提供了一些与系统相关的方法

三个方法:

1.exit:停止虚拟机

2.currentTimeMillis:获取当前时间的毫秒值

3.arraycopy:拷贝数组

public static void main(String[] args) {
        //System.exit(0);关闭虚拟机
        //记录当前时间毫秒
        Long start =System.currentTimeMillis();
        int[] arr = {1,2,3,4,5,6,7,8,9,10};
        int[] arr2 = new int[10];

        //参数1:数据从那copy 2:数据源索引值 3:目的地 4:目的地索引值 5:copy数值的个数
        //数据源和目的地的数据类型和数组长度必须一样 引用数据类型可以复制到其父类
        System.arraycopy(arr,0,arr2,4,3);
        for (int i = 0; i < arr2.length; i++) {
            System.out.print(arr2[i] + " ");
        }
        Long end = System.currentTimeMillis();
        System.out.println(start-end);

Runtime

常用API_第1张图片

 Object

常用API_第2张图片

常用API_第3张图片

 BigInteger 

在java中,整数有四个类型:byte(一字节八位) short(二字节16位) int(四字节32位) long(8字节64位)

常用API_第4张图片

 

正则表达式:maches方法

常用API_第5张图片

 

System.out.println("a".matches("[abc]"));

你可能感兴趣的:(java,前端,html)