怎么在 Java 里调用 Kotlin 的 suspend 方法

查看 124|回复 11
guoziq09   
你甚至不想搜索一下协程这两个字。
  fun test(){
        CoroutineScope(Dispatchers.Main).launch {
            testCoroutine()
        }
    }
   
    suspend fun testCoroutine() = withContext(Dispatchers.IO){
        delay(1000)
        //todo
    }
magic3584
OP
  
@yazinnnn0 #7
@Achieve7 #8
我寻思 oc 和 swift 相互调用没这么负责,这个东西我搞了俩小时没搞出来。
android 太难搞了
@lmshl #9
老项目了
@guoziq09 我直接搜 java 调用 kotlin suspend,  出来的挺复杂。
您需要登录后才可以回帖 登录 | 立即注册

返回顶部