Sök…


Fångar undantag med try-catch-äntligen

Att fånga undantag i Kotlin ser mycket ut som Java

try {
    doSomething()
} 
catch(e: MyException) {
    handle(e)
} 
finally {
    cleanup()
}

Du kan också ta flera undantag

try {
    doSomething()
} 
catch(e: FileSystemException) {
    handle(e)
}
catch(e: NetworkException) {
    handle(e)
}
catch(e: MemoryException) {
    handle(e)
}
finally {
    cleanup()
}    

try är också ett uttryck och kan returnera värde

val s: String? = try { getString() } catch (e: Exception) { null }

Kotlin har inte kontrollerat undantag, så du behöver inte ta några undantag.

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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow