Kotlin协程到底是怎么切换线程的?你是否知晓?,大厂面经合集

本文深入探讨了Kotlin协程中的调度器和拦截器如何影响线程切换。通过分析代码,揭示了协程启动流程,指出调度器通过拦截器在协程恢复前切换线程。文章还介绍了协程启动、创建、拦截处理的关键步骤,并提到了`DispatchedContinuation`在实现线程切换中的作用。
摘要由CSDN通过智能技术生成

2.ViewModelScope则往CoroutineContext中添加了JobDispatcher

我们先来看一段简单的代码

fun testOne(){

GlobalScope.launch {

print(“1:” + Thread.currentThread().name)

delay(1000)

print(“2:” + Thread.currentThread().name)

}

}

//打印结果为:DefaultDispatcher-worker-1

fun testTwo(){

viewModelScope.launch {

print(“1:” + Thread.currentThread().name)

delay(1000)

print(“2:” + Thread.currentThread().name)

}

}

//打印结果为: main

上面两种Scope启动协程后,打印当前线程名是不同的,一个是线程池中的一个线程,一个则是主线程

这是因为ViewModelScopeCoroutineContext中添加了Dispatchers.Main.immediate的原因

我们可以得出结论:协程就是通过Dispatchers调度器来控制线程切换的

1.3 什么是调度器?

从使用上来讲,调度器就是我们使用的Dispatchers.Main,Dispatchers.DefaultDispatcher.IO

从作用上来讲,调度器的作用是控制协程运行的线程

从结构上来讲,Dispatchers的父类是ContinuationInterceptor,然后再继承于CoroutineContext

它们的类结构关系如下:

这也是为什么Dispatchers能加入到CoroutineContext中的原因,并且支持+操作符来完成增加

1.4 什么是拦截器

从命名上很容易看出,ContinuationInterceptor即协程拦截器,先看一下接口

interface ContinuationInterceptor : CoroutineContext.Element {

// ContinuationInterceptor 在 CoroutineContext 中的 Key

companion object Key : CoroutineContext.Key

/**

  • 拦截 continuation

*/

fun interceptContinuation(continuation: Continuation): Continuation

//…

}

从上面可以提炼出两个信息

1.拦截器的Key是单例的,因此当你添加多个拦截器时,生效的只会有一个

2.我们都知道,

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值