我只是偶然翻過這個方法這與剛剛返回新的System.currentTimeMillis()有什麼不同嗎?
public static Date getNowDate() {
final Calendar cal = new GregorianCalendar();
cal.setTime(new Date());
return cal.getTime();
}
都會調用是這樣的:
getNowDate().getTime()
這是從剛剛打電話
System.currentTimeMillis()
有什麼不同?
我找到了一個鏈接http://stackoverflow.com/questions/368094/system-currenttimemillis-vs-new-date-vs-calendar-getinstance-gettime 希望它有助於 問候 – Chakri 2012-08-14 09:17:28
這'getNowDate()'方法以一種過於複雜的方式來做事 - 它屬於[The Daily WTF](http://thedailywtf.com/)... – Jesper 2012-08-14 09:34:59