英文:
Finding the difference between dates in seconds using java
问题
我卡在java.time.temporal.ChronoUnit和java.time.temporal.Temporal until之间。它们是如何工作的?
英文:
I'm stuck between java.time.temporal.ChronoUnit and java.time.temporal.Temporal until. How do they work??
答案1
得分: 2
查看ChronoUnit和TemporalUnit的Javadoc。
ChronoUnit
枚举基本上提供了一些标准的TemporalUnit
,但其他开发人员也可以实现其他的TemporalUnit
。
例如,您可以编写以下代码:
TemporalUnit u = ChronoUnit.DAYS;
但您也可以通过扩展ChronoUnit
来创建新的TemporalUnit
。
英文:
Look at the javadoc for ChronoUnit and TemporalUntit.
The ChronoUnit
enum basically provides some standard TemporalUnit
s but other developers could implement other TemporalUnit
s.
For example, you can write the following code:
TemporalUnit u=ChronoUnit.DAYS;
but you can also create new TemporalUnit
s by extending ChronoUnit
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论