gpt4 book ai didi

kotlin - 如何检查当前时间是在kotlin中的某个时间之前还是之后

转载 作者:行者123 更新时间:2023-12-01 21:47:41 26 4
gpt4 key购买 nike

我想检查当前时间(小时和分钟)是在某个时间之前还是之后,我该如何在 kotlin 中做到这一点

最佳答案

您可以使用 Calendar类:

val currentTime = Calendar.getInstance()
val timeToMatch = Calendar.getInstance()

timeToMatch[Calendar.HOUR_OF_DAY] = hourToMatch
timeToMatch[Calendar.MINUTE] = minuteToMatch

when {
currentTime == timeToMatch -> // the times are equals
currentTime < timeToMatch -> // currentTime is before timeToMatch
currentTime > timeToMatch -> // currentTime is after timeToMatch
}

关于kotlin - 如何检查当前时间是在kotlin中的某个时间之前还是之后,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60096853/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com