gpt4 book ai didi

kotlin - 如何处理 Kotlin 中的异常?

转载 作者:IT老高 更新时间:2023-10-28 13:46:20 25 4
gpt4 key购买 nike

我开始学习 Kotlin,但我不明白如何处理异常。我知道没有选中的,但无论如何,如果我的方法抛出一个,我该怎么办?例如:

fun test(a: Int, b: Int) : Int {
return a / b
}

如果我除以零,就会出现 ArithmeticException。那么我应该如何处理这些事情呢?

最佳答案

您可以编写一个扩展函数来在遇到异常时返回一个默认值。

fun <T> tryOrDefault(defaultValue: T, f: () -> T): T {
return try {
f()
} catch (e: Exception) {
defaultValue
}
}

fun test(a: Int, b: Int) : Int = tryOrDefault(0) {
a / b
}

关于kotlin - 如何处理 Kotlin 中的异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47059483/

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