本文介绍了在Java中如何说5秒?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在查看日期几乎完全被弃用,还在向后兼容性原因如果您需要设置特定日期或日期算术,请使用:
Date is almost entirely deprecated and is still there for backward compatibility reasons. If you need to set particular dates or do date arithmetic, use a Calendar:
Calendar calendar = Calendar.getInstance(); // gets a calendar using the default time zone and locale.
calendar.add(Calendar.SECOND, 5);
System.out.println(calendar.getTime());
这篇关于在Java中如何说5秒?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!