Kotlin
Ausnahmen
Suche…
Ausnahme mit try-catch-finally
Ausnahmen in Kotlin abzufangen sieht Java sehr ähnlich
try {
doSomething()
}
catch(e: MyException) {
handle(e)
}
finally {
cleanup()
}
Sie können auch mehrere Ausnahmen abfangen
try {
doSomething()
}
catch(e: FileSystemException) {
handle(e)
}
catch(e: NetworkException) {
handle(e)
}
catch(e: MemoryException) {
handle(e)
}
finally {
cleanup()
}
try
ist auch ein Ausdruck und kann einen Wert zurückgeben
val s: String? = try { getString() } catch (e: Exception) { null }
Kotlin hat keine Ausnahmen geprüft, so dass Sie keine Ausnahmen erkennen müssen.
fun fileToString(file: File) : String {
//readAllBytes throws IOException, but we can omit catching it
fileContent = Files.readAllBytes(file)
return String(fileContent)
}
Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow