正如标题所示,如果在Kotlin中x时间内没有用户输入,是否有任何方法可以执行操作?
我正在努力实现以下目标:
用户输入:hello
你好
如果没有任何React,程序将打印:
你还在吗?
我代码:
fun main() {
while (true){
var echo = readLine()
println(echo)
println("Are you there?") // if x time passes and the user has not given input
}
}
1条答案
按热度按时间vuktfyat1#
这个资源提供了很多关于如何在Kotlin中测量运行时间的信息。你可以使用其中的一个并检查每次通过循环所用的时间。如果所用的总时间大于所需的时间,则打印该语句。
https://www.geeksforgeeks.org/find-days-between-two-dates-in-android/