类名.属性名
或类名.方法名
调用
package com.llg.learnMath; public class Learn1 { //程序的入口 public static void main(String[] args) { //常用属性 System.out.println("Math.PI = " + Math.PI); //常用方法 System.out.println("随机数 Math.random() :\t" + Math.random()); System.out.println("绝对值 Math.abs(-23) :\t" + Math.abs(-23)); System.out.println("向上取值 Math.ceil(8.2) :\t" + Math.ceil(8.2)); System.out.println("向下取值 Math.floor(8.9) :\t" + Math.floor(8.9)); System.out.println("四舍五入 Math.round(2.4) :\t" + Math.round(2.4)); System.out.println("四舍五入 Math.round(2.5) :\t" + Math.round(2.5)); System.out.println("取大值 Math.max(2,3) :\t" + Math.max(2,3)); System.out.println("取小值 Math.min(2,3) :\t" + Math.min(2,3)); } }
import static java.lang.Math.*;