Kotlin 的天数如何操作?
How to operate on days in Kotlin?
我可以像System.currentTimeInMillis()
一样获取当前时间。但是我真的不需要毫秒范围内的这种粒度。像 2021 年 11 月 22 日这样让我度过难关的日子的类型足以满足我的目的。
我也很喜欢像增加接下来的 14 天等操作
您可以按如下方式使用LocalDate
:
fun main() {
val currentDate = LocalDate.now()
println(currentDate)
val futureDate = currentDate.plusDays(14)
println(futureDate)
}
您可以在 https://www.baeldung.com/java-8-date-time-intro 的 Java/Kotlin 中阅读有关这个新时间 API 的更多信息。
我可以像System.currentTimeInMillis()
一样获取当前时间。但是我真的不需要毫秒范围内的这种粒度。像 2021 年 11 月 22 日这样让我度过难关的日子的类型足以满足我的目的。
我也很喜欢像增加接下来的 14 天等操作
您可以按如下方式使用LocalDate
:
fun main() {
val currentDate = LocalDate.now()
println(currentDate)
val futureDate = currentDate.plusDays(14)
println(futureDate)
}
您可以在 https://www.baeldung.com/java-8-date-time-intro 的 Java/Kotlin 中阅读有关这个新时间 API 的更多信息。