Skip to content

Instantly share code, notes, and snippets.

@rail-rate
Created August 16, 2019 14:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rail-rate/32ff44ec6c8d48c6b027813c7429723e to your computer and use it in GitHub Desktop.
Save rail-rate/32ff44ec6c8d48c6b027813c7429723e to your computer and use it in GitHub Desktop.
try-catch6
fun main(args: Array<String>) {
val text = "abcde"
sub1(text)
}
fun sub1(a : String){
sub2(a)
}
fun sub2(a : String){
try{
val number = a.toInt()
println("number = ${number}")
}catch(e : NumberFormatException){
println("sub2で処理")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment