数学处理类(熟悉)
Math类的概念
(1)基本概念
java.lang.Math类主要用于提供执行数学运算的方法,如:对数,平方根。
也就是和数学相关的功能。
以下方法都是使用stati关键字修饰,使用引用点调用。
(2)常用方法
常用的方法实例:
package com.lagou.task11; /* * 编程实现对Math类中常用方法的测试 */ public class MathTest { public static void main(String[] args) { System.out.println("获取两个整数中最大值的结果是:" + Math.max(10,20)); System.out.println("获取两个整数中最小值的结果是:" + Math.min(10,20)); System.out.println("获取次方的结果是:" + Math.pow(2,3)); // 体现为double类型 System.out.println("获取绝对值的结果是:" + Math.abs(-5)); System.out.println("获取四舍五入的结果是:" + Math.round(3.14)); System.out.println("该整数的平方根是:" + Math.sqrt(16)); System.out.println("获取随机数是:" + Math.random()); } }
实际上Math中还要大量的方法,我们可以在源码或者手册中查到。