概述:表示特定的瞬间,精确到毫秒。可以通过方法来设定自己所表示的时间,可以表示任意时间。
构造方法:
a.Date():创建的是一个表示当前系统时间的Dtae对象
b.Dtae(long date):根据“指定时间”创建Dtae对象
Dtae的常用方法:
1.实现毫秒值转换成Date对象
返回值void,参数long 方法void setTime(long time)
2.将Date对象转成毫秒值
返回long,无参数 方法long getTime()
例:
public class DateDemo2 {
public static void main(String [ ] args) {
Date d = new Date( );
d.setTime(1000*60*60*24*2);
System.out.println(d.tolocalString());
System.out.println(d,getTime( ));
}
}
输出结果:1970-1-3 08:00:00
172800000