平常我们想要获取一个时间戳,一般是这样写的:
new Date().getTime() / 1000
现在大家不妨可以改成这样:
System.currentTimeMillis() / 1000
PS:/ 1000 的原因是因为 new Date().getTime() 和 System.currentTimeMillis() 返回的是一个13位数字,单位是毫秒。除1000能让单位变为秒。
根据平常使用习惯,使用new Date()来获取当前时间,Date 方法包含了很多其他方法,可以处理当前时间得到各种结果。
但是当你并不需要获取那么多信息,你只需要获取一个时间戳的时候,也就是你只需要使用new Date().getTime()的时候,可以使用 System.currentTimeMillis() 来替代。
为什么使用 System.currentTimeMillis() ,我们不妨点入Date的源码:
/**
* Allocates a <code>Date</code> object and initializes it so that
* it represents the time at which it was allocated, measured to the
* nearest millisecond.
*
* @see java.lang.System#currentTimeMillis()
*/
public Date() {
this(System.currentTimeMillis());
}
你会发现 Date 本身就是调用了 System.currentTimeMillis() 来进行初始化。
而且使用 System.currentTimeMillis() 是直接调用本地方法,而 new Date().getTime() 确还要创建一个Date对象,降低了效率和占用了内存(虽然损耗很小)。
public static native long currentTimeMillis();
所以只是为了获取一个时间戳,何必舍近取远,绕一大圈呢。
建议大家使用 System.currentTimeMillis() 代替 new Date().getTime() 来获取时间戳。