kotlin 中runBlocking和coroutineScope的区别

先来看下官网的表述:

In addition to the coroutine scope provided by different builders, it is possible to declare your own scope using coroutineScope builder. It creates a coroutine scope and does not complete until all launched children complete. The main difference between runBlocking and coroutineScope is that the latter does not block the current thread while waiting for all children to complete.

import kotlinx.coroutines.*

fun main() = runBlocking { // this: CoroutineScope
    launch { 
        delay(200L)
        println("Task from runBlocking")
    }
    
    coroutineScope { // Creates a coroutine scope
        launch {
            delay(500L) 
            println("Task from nested launch")
        }
    
        delay(100L)
        println("Task from coroutine scope") // This line will be printed before the nested launch
    }
    
    println("Coroutine scope is over") // This line is not printed until the nested launch completes
}

上面的这段描述很简单,但是,执行完上面的代码后,就有点小迷惑了,按照官方的说法,coroutineScope是不会阻塞当前线程的,那么Coroutine scope is over 应该在coroutineScope代码段执行之前打印才对啊,为什么每次执行的结果都是最后才打印Coroutine scope is over?

if (你清楚的直到其中的原理) {
      return
}

其实,我看完之后,产生迷惑的原因主要是因为官方拿runBlockingcoroutineScope来比较,给出的例子也不直观。但是其实他们俩完全是不同的东西。让我们自己重新换个例子再来理解下:

1. runBlocking

Runs a new coroutine and blocks the current thread interruptibly until its completion

fun main() {
    runBlocking {
                Log.i("CoroutineDemo", "before delay in coroutine")
                delay(500L)
                Log.i("CoroutineDemo", "after delay in coroutine")
            }

    Log.i("CoroutineDemo", "out coroutine")
}

这里用runBlocking创建来一个协程并立即执行,按照runBlocking签名上的注释来说,runBlocking会阻塞当前线程,所以,我们在协程里用delay来挂起协程,看看打印结果:

CoroutineDemo: before delay in coroutine
CoroutineDemo: after delay in coroutine
CoroutineDemo: out coroutine

很显然,runBlocking确实阻塞了当前线程。

2. coroutineScope

Creates a [CoroutineScope] and calls the specified suspend block with this scope.

coroutineScope只是一个suspend function,它和runBlocing有本质的区别。

fun main() {
        GlobalScope.launch(start = CoroutineStart.UNDISPATCHED) {
            coroutineScope {
                Log.i("CoroutineDemo", "before delay in coroutine")
                delay(500L)
                Log.i("CoroutineDemo", "after delay in coroutine")
            }
        }

        Log.i("CoroutineDemo", "out coroutine")
}

这里我们用GlobalScope来创建一个顶级的协程,并设置start参数为UNDISPATCHED,立即执行。
来直接看执行结果:

CoroutineDemo: before delay in coroutine
CoroutineDemo: out coroutine
CoroutineDemo: after delay in coroutine

很显然,coroutineScope在执行完delay挂起之前的代码后,就立即将控制权交给了所在的线程,线程并没有被阻塞,并立即去执行协程外面的事情去了。最后挂起时间到了后,才又将控制权交回协程,继续执行delay后面的代码。

由上面两个例子可见,runBlocking和coroutineScope除了有本质的区别外,最大的不同就在于两者所在的协程被挂起后对所在线程的影响,runBlocking所在协程被挂起后会阻塞所在线程,线程不能处理协程之外的事情;coroutineScope所在的协程被挂起后,则会立即交出控制权给所在的线程,不会阻塞线程,线程可以处理协程之外的事情。

相关的解释请参考:
Coroutines: runBlocking vs coroutineScope


最后帮朋友打个小广告

一个有趣的迷你小程序

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 196,647评论 5 462
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 82,690评论 2 374
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 143,739评论 0 325
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 52,692评论 1 267
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 61,552评论 5 358
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 46,410评论 1 275
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 36,819评论 3 387
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 35,463评论 0 255
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 39,752评论 1 294
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 34,789评论 2 314
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 36,572评论 1 326
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 32,414评论 3 315
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 37,833评论 3 300
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,054评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 30,345评论 1 254
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 41,810评论 2 342
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 41,016评论 2 337