美文网首页
什么是Kotlin协程

什么是Kotlin协程

作者: 九风特 | 来源:发表于2022-01-07 10:18 被阅读0次

什么是协程?
首先我们可以认为它是轻量级的线程,但它却不是线程,人家有名有姓叫协程,不是线程哦
如果从功能上可以这样说 协程就是一种可以挂起的运行在线程之上的计算过程
Coroutines are computations that run on top of threads and can be suspended
Such a suspendable computation is called a coroutine.
官网是怎么说的
概念一定要搞清楚,协程是新东西,只是和线程像而已。

至于怎么学习协程 我建议是去官网看官方文档,那个更新的快而且肯定是最正确的。

Coroutines guide | Kotlin (kotlinlang.org)

相关文章

网友评论

      本文标题:什么是Kotlin协程

      本文链接:https://www.haomeiwen.com/subject/ebcjcrtx.html