标签:class orm 操作 构造方法 起点 子类 mat current ext
java.util.Date:表示日期和时间的类,可以进行时间戳,日期转化和日期格式化的的操作
代码中的时间原点:1970年1月1日 00:00:00 时间戳计算的起点
public class Demo {
public static void main(String[] args) {
System.out.print(System.currentTimeMillis());// 获取当前时间戳(从时间原点起多少毫秒),返回值为long类型
}
}
import java.util.Date;
public class Demo {
public static void main(String[] args) {
Date date = new Date();// date的空参数构造方法,返回当前时区时间的date对象
System.out.println(date);// Sun Apr 12 10:44:46 CST 2020
long timeTemp = date.getTime();// 获取当前时间的时间戳,返回long类型
System.out.println(timeTemp);//1586659546745
Date date2 = new Date(1586659546745L);// 根据时间戳生成时间date对象
System.out.println(date2);// Sun Apr 12 10:45:46 CST 2020
}
}
java.text.DateFormat是时间/日期的格式化子类的抽象类,可以在Date对象与String对象之间进行来回转换
. 格式化:按照指定格式,从Date->String
. 解析:按指定格式,String->Date
标签:class orm 操作 构造方法 起点 子类 mat current ext
原文地址:https://www.cnblogs.com/Kingfan1993/p/12683923.html