Date类的使用

构造方法

1)Date():无参构造

代码

         Date date = new Date();
System.out.println(date);

2)Date(long time):带参构造

代码

         Date date = new Date(long time);
System.out.println(date);

注:所传入的long型参数是指距离UTC世界标准时间1970年1月1日00点00分00秒的时间长度(单位为毫秒),但需要注意的是Date对象返回的是根据操作系统确定的本地时区(东八区)CST时间,比UTC快8个小时。所以也是指距离CST时间1970年1月1日08点00分00秒的时间长度(单位为毫秒)。

【常用方法】

1)public long getTime():获取距离UTC世界标准时间1970年1月1日00点00分00秒的时间长度,以毫秒为单位。

1)public void setTime(long time):设置时间,与Date的有参构造类似,输出时打印对象本身即可。

上一篇:《从零开始学Swift》学习笔记(Day 68)——Cocoa Touch设计模式及应用之响应者链与触摸事件


下一篇:could not find class that it depends on; nested exception is java.lang.NoClassDefFoundError: org/aspectj/weaver/reflect/ReflectionWorld$ReflectionWorldException