サーチ…


try-catch-finallyを使って例外をキャッチする

Kotlinの例外をキャッチするのはJavaと非常によく似ています

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

複数の例外をキャッチすることもできます

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

tryも式であり、値を返す可能性があります

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

Kotlinは例外をチェックしていないので、例外をキャッチする必要はありません。

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
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow