📜  kotlin 协程中的暂停是什么意思 - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:59.640000             🧑  作者: Mango

代码示例1
A suspending function is simply a function that can be paused and resumed at a later time. They can execute a long running operation and wait for it to complete without blocking. The syntax of a suspending function is similar to that of a regular function except for the addition of the suspend keyword.