Math類做爲經常使用類中的一個,通常狀況下咱們用的不是特別多,除非你是在特殊領域api
若要用的話仍是查看下api比較靠譜dom
1 public class MathTest { 2 public static void main(String[] args) { 3 //取絕對值 4 System.out.println(Math.abs(-1)); //1 5 //開方 6 System.out.println(Math.sqrt(9)); //3.0 7 //向上取整 8 System.out.println(Math.ceil(3.14)); //4.0 9 //向下取整 10 System.out.println(Math.floor(3.14)); //3.0 11 /** 12 * 生成[a,b)之間的任意整數 13 * 公式:int num = (int)(Math.random()*(b-a+1)+a); 14 */ 15 //生成0-10之間的任意整數 16 int a = (int)(10*Math.random()); 17 System.out.println(a); //2 18 19 } 20 }