java常用类-Math类
Math类是一个数学工具类方法,里面有很多静态工具方法;方便开发者直接调用;
这里举例,具体的可以查看api文档;
1,max方法 求最大值;
2,min方法 求最小值;
3,round方法 四舍五入;
4,pow方法 求次幂;
给下实例:
package com.java1234.chap05.sec03; public class TestMath { public static void main(String[] args) { System.out.println("最大值:"+Math.max(1, 2)); System.out.println("最小值:"+Math.min(1, 2)); System.out.println("四舍五入:"+Math.round(4.5)); System.out.println("3的4次方:"+Math.pow(3, 4)); } }
运行输出:
最大值:2
最小值:1
四舍五入:5
3的4次方:81.0