System.currentTimeMillis() vs. new Date() vs. Calendar.getInstance().getTime()
2022-08-31 05:31:18
在Java中,使用的性能和资源影响是什么
System.currentTimeMillis()
断续器
new Date()
断续器
Calendar.getInstance().getTime()
据我所知,这是最有效的。但是,在大多数应用程序中,需要将该长整型值转换为 Date 或某些类似的对象,才能执行对人类有意义的任何操作。System.currentTimeMillis()