Date日期类 Date表示特定的时间,精确到毫秒; 构造方法: public Data() public Date(long date) 常用方法: public long getTime() public void setTime(long time) public Boolean before(Date when) public Boolean after(Date when) public int compareTo(Date anotherDate) public String toS…
一.Math类 Math类中有一些常用的数学函数,比较简单,不进行详细解释,仅举例说明: 1.绝对值和取整 import java.lang.Math; public class Mat { public static void main(String []args) { //abs()返回绝对值 System.out.println(Math.abs(-2.5)); //ceil()返回较大的整数 System.out.println(Math.ceil(-2.6)); System.out.…