在 Kotlin 中处理异常
异常处理是大多数编程语言的基本概念。它有助于处理异常,以便代码执行没有任何问题。
甚至 Kotlin 也允许使用 @Throws
注释进行异常处理。本文将介绍如何使用 @Throws
注释来处理 Kotlin 中的异常。
但在进入之前,让我们先看看 Kotlin 中异常的基本概念。
Kotlin 中的异常概念
Kotlin 异常类似于 Java 异常。他们都是 Kotlin 中 Throwable
类的后代;但是,也有一些差异。
与 Java 不同,Kotlin 没有任何检查异常。因此,Kotlin 中只有未经检查的或运行时异常。
此外,Kotlin 允许创建自定义异常。因此,我们可以编写自己的异常处理代码来防止任何运行时错误。
在 Kotlin 中处理未经检查的异常
如前所述,未经检查的异常是在运行时发生的异常。所有 Java 未检查异常,包括 ArithmeticException
、NullPointerException
、NumberFormatException
等,都是 Kotlin 中未检查异常的示例。
我们可以使用 try-catch
块和 finally
关键字在 Kotlin 中处理未经检查的异常。
这是演示未经检查的异常的示例代码。
fun main(args: Array<String>) {
try {
val i:Int = 12;
val v:String = "Hello!";
v.toInt();
}
catch(e:Exception) {
e.printStackTrace();
}
finally {
println("This is an example of unchecked exception handling using the try-catch block.");
}
}
输出:
点击这里查看示例代码的演示。
在 Kotlin 中创建自定义异常
我们还可以使用 throw
关键字在 Kotlin 中创建自定义异常。让我们创建一个声明整数变量的代码。
然后我们将检查该数字是否等于或大于 18。如果是,我们将打印一条消息,说`你有资格投票。``;否则,我们将抛出自定义错误消息。
fun main(args: Array<String>) {
val v:Int;
v = 16;
if(v >= 18)
{
println("Welcome!! You are eligible to vote.")
}
else
{
//throwing custom exception using the throw keyword
throw customExceptionExample("Sorry! You have to wait to cast a vote.")
}
}
//custom exception class
class customExceptionExample(message: String) : Exception(message)
输出:
点击这里查看示例代码的演示。
在 Kotlin 中使用 @Throws
注释处理异常
虽然没有检查异常,但我们仍然可以在 Kotlin 中处理它们。我们可以通过使用 Kotlin @Throws
异常注释来做到这一点。
@Throws
注释有助于 Java 互操作性。因此,如果我们需要将任何已检查的异常代码转换为 Java,我们可以为 JVM 机器使用 @Throws
注释。
这是一个示例代码来演示相同的内容。
import java.io.*
import kotlin.jvm.Throws
fun main(args: Array<String>) {
val va=0
var res=0
try {
res=va/0 // Since nothing is divisible by 0, it will throw an exception
} catch (excep: Exception) {
// While this is an Airthmetic exception,
// we will throw a NullPointerException using the function call
excep().throwJavaChecked()
}
}
class excep{
@Throws(NullPointerException::class)
fun throwJavaChecked() {
throw NullPointerException()
}
}
输出:
点击这里查看示例代码的演示。
Kailash Vaviya is a freelance writer who started writing in 2019 and has never stopped since then as he fell in love with it. He has a soft corner for technology and likes to read, learn, and write about it. His content is focused on providing information to help build a brand presence and gain engagement.
LinkedIn