Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
纯 Kotlin 中是否有与 JVM 的 Thread.sleep() 等效的用于 MPP 项目?这可以在每个平台上使用 实现expected,但我问的是不使用该方法的解决方案。
expected
这可以使用协程来完成。
例如:
runBlocking { println("Wait for 5sec") delay(5000) println("Done waiting for 5sec") }