Kotlin协程之withContext

本文详细介绍了Kotlin协程中的withContext函数的使用,包括指定代码运行线程、阻塞上下文线程以及返回值特性。withContext通过Dispatchers指定线程,如Dispatchers.IO,它会阻塞当前上下文直到代码块执行完毕,并返回代码块的最终值。示例展示了withContext如何影响线程执行顺序和返回值处理。
摘要由CSDN通过智能技术生成

withContext必须在协程或者suspend函数中调用,否则会报错。它必须显示指定代码块所运行的线程,它会阻塞当前上下文线程,有返回值,会返回代码块的最后一行的值。

1. 指定代码块所运行的线程

它和launch一样,通过Dispatchers来指定代码块所运行的线程,如下所示:

runBlocking<Unit> {
	withContext(Dispatchers.IO){
     	delay(1000)
     	println("${Thread.currentThread().name} 1")
	}
}

2. 阻塞上下文线程

withContext会阻塞上下文线程,如下所示:

runBlocking<Unit> {
	withContext(Dispatchers.IO){
		delay(1000)
		println("${Thread.currentThread().name} 1")
	}
	println("${Thread.currentThread().name} 2")
}

结果

DefaultDispatcher-worker-1 @coroutine#1 1
Test worker @coroutine#1 2

从上结果可以看出,withContext会阻塞上下文线程

3. 有返回值,会返回代码块的最后一行的值

withContext有返回值,会返回代码块的最后一行的值,如下所示:

runBlocking<Unit> {
	val t = withContext(Dispatchers.IO){
		delay(1000)
		println("${Thread.currentThread().name} 1")
		9
	}
	println("${Thread.currentThread().name} $t")
}

结果:

DefaultDispatcher-worker-1 @coroutine#1 1
Test worker @coroutine#1 9

如果最后一行是无返回值的函数,则它的返回值是最后一行函数的返回值:kotlin.Unit,代码如下所示:

runBlocking<Unit> {
	val t = withContext(Dispatchers.IO){
		delay(1000)
		println("${Thread.currentThread().name} 1")
	}
	println("${Thread.currentThread().name} $t")
}

结果:

DefaultDispatcher-worker-1 @coroutine#1 1
Test worker @coroutine#1 kotlin.Unit

总结

  1. withContext必须在协程或者suspend函数中调用
  2. 通过Dispatchers来指定代码块所运行的线程
  3. withContext会阻塞上下文线程
  4. withContext有返回值,会返回代码块的最后一行的值
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值