gpt4 book ai didi

kotlin-coroutines - 如何将暂停函数作为参数传递给另一个函数? Kotlin协程

转载 作者:行者123 更新时间:2023-12-04 13:30:24 25 4
gpt4 key购买 nike

我想将暂停函数作为参数发送,但是它显示“修饰符'suspend'不适用于'value参数'。怎么做?

fun MyModel.onBG(suspend bar: () -> Unit) {
launch {
withContext(Dispatchers.IO) {
bar()
}

}
}

最佳答案

Lambda的suspend修饰符应放在冒号后面,而不是前面。例:

fun MyModel.onBG(bar: suspend () -> Unit) {
launch {
withContext(Dispatchers.IO) {
bar()
}
}
}

关于kotlin-coroutines - 如何将暂停函数作为参数传递给另一个函数? Kotlin协程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55886676/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com