gpt4 book ai didi

android - kotlin 异步异常处理

转载 作者:搜寻专家 更新时间:2023-11-01 07:42:26 25 4
gpt4 key购买 nike

鉴于以下代码段,我不明白为什么我的 Android 应用会崩溃。我在一个独立的 kotlin 应用程序中进行了测试,但这并没有发生。

class LoginActivity : AppCompatActivity(), CoroutineScope
{
lateinit var job: Job
override val coroutineContext: CoroutineContext
get() = Dispatchers.Main + job


override fun onCreate(savedInstanceState: Bundle?)
{
super.onCreate(savedInstanceState)
job = Job()

try
{
launch()
{
try
{
var res = async { test() }

res.await()

}
catch (e2: java.lang.Exception)
{

}
}

}
catch (e: java.lang.Exception)
{


}
}

fun test(): String
{
throw java.lang.Exception("test ex")
return "";
}
}


--------- beginning of crash
E/AndroidRuntime: FATAL EXCEPTION: main
Process: ro.ingr.ingeeasafety, PID: 11298
java.lang.Exception: test ex
at ro.ingr.ingeeasafety.activities.LoginActivity.test(LoginActivity.kt:72)
at ro.ingr.ingeeasafety.activities.LoginActivity$onCreate$1$res$1.invokeSuspend(LoginActivity.kt:48)
at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:32)
at kotlinx.coroutines.DispatchedTask.run(Dispatched.kt:236)
at android.os.Handler.handleCallback(Handler.java:751)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:154)
at android.app.ActivityThread.main(ActivityThread.java:6119)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776)

独立的kotlin应用程序代码,执行到“主端”println

class app
{
companion object :CoroutineScope
{
lateinit var job: Job
override val coroutineContext: CoroutineContext
get() = Dispatchers.Default+ job

init
{
job=Job()
}

@JvmStatic
fun main(args: Array<String>)
{
launch()
{
try
{
async()
{
println("async start")
throw Exception("aaa")

}.await()
}
catch (e: Exception)
{
println("async exception")
}
}


println("main end")

}
}
}

我正在尝试创建一个流程,我从某个地方加载一些东西,如果加载操作失败,我的应用程序不会崩溃。我原以为异常会在定义的处理程序中被捕获。

LE:我添加了崩溃堆栈跟踪。

最佳答案

您可以在这里找到答案: https://proandroiddev.com/kotlin-coroutines-patterns-anti-patterns-f9d12984c68e

总而言之,有几种方法可以使用 async 捕获异常。

1 - 使用 supervisorScope 封装 async 调用

launch {
supervisorScope {
val task = async {
methodThatThrowsException()
}
try {
updateUI("Ok ${task.await()}")
} catch (e: Throwable) {
showError("Erro! ${e.message}")
}
}
}

2 - 将 SupervisorJob 作为参数传递

launch { 
// parentJob (optional) is the parent Job of the CoroutineContext
val task = async(SupervisorJob(parentJob)) {
methodThatThrowsException()
}
try {
updateUI("Ok ${task.await()}")
} catch (e: Throwable) {
showError("Erro! ${e.message}")
}
}

3 - 用coroutineScope包装async

launch {
try {
coroutineScope {
val task = async {
methodThatThrowsException()
}
updateUI("Ok ${task.await()}")
}
} catch (e: Throwable) {
showError("Erro! ${e.message}")
}
}

关于android - kotlin 异步异常处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53303358/

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