1、获取当前时间戳(长整数)
执行1000次 ,ms
System.getCurrentTimeMillis(),187
new Date().getTime(),297
Calendar.getInstance().getCurrentTimeMills(),7032
另,System 类中有很多高效的方法,比如,arrayCopy 之类的
-----------Canlendar因为要处理时区问题会耗费很多的时间。
---------System.nanoTime()可获取纳秒值,但值无意义、只能用于2个时间戳比较差值
JAVA获取时间戳,哪个更快。http://tangmingjie2009.iteye.com/blog/1543166
2、xxx转换为字符串
(String)xxx,强制转换的效率比valueOf高,但如果a本质上不是字符串,强制转换将失败,
String.valueOf(xxx)而valueOf有多个重载版本,因此对每种类型的a,都能保证成功