Kotlin
eccezioni
Ricerca…
Eccezionale cattura con try-catch-finally
Le eccezioni di cattura in Kotlin sono molto simili a Java
try {
doSomething()
}
catch(e: MyException) {
handle(e)
}
finally {
cleanup()
}
Puoi anche catturare più eccezioni
try {
doSomething()
}
catch(e: FileSystemException) {
handle(e)
}
catch(e: NetworkException) {
handle(e)
}
catch(e: MemoryException) {
handle(e)
}
finally {
cleanup()
}
try
è anche un'espressione e può restituire valore
val s: String? = try { getString() } catch (e: Exception) { null }
Kotlin non ha verificato le eccezioni, quindi non devi rilevare eccezioni.
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
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow