Recherche…


Exception de capture avec try-catch-finally

Catching exceptions dans Kotlin ressemble beaucoup à Java

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

Vous pouvez également intercepter plusieurs exceptions

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

try est aussi une expression et peut renvoyer une valeur

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

Kotlin n'a pas vérifié les exceptions, vous n'avez donc aucune exception à prendre.

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
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow