Skip to content

Instantly share code, notes, and snippets.

@rail-rate
Created August 16, 2019 12:50
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/dd74788f9b3ac5ff2be26a1935ff5978 to your computer and use it in GitHub Desktop.
Save rail-rate/dd74788f9b3ac5ff2be26a1935ff5978 to your computer and use it in GitHub Desktop.
try-catch2
fun main(args: Array<String>) {
val text = "abcde"
try{
val number = text.toInt()
println("number = ${number}")
}catch(e : NumberFormatException){
println("${text}は数字に変換出来ません")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment