Kotlin基础-异常处理错误
Posted 张兮兮
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Kotlin基础-异常处理错误相关的知识,希望对你有一定的参考价值。
/*
*对可能发生执行异常的代码的一种保护措施
* 默认异常类 :EXception
*
*
* */
fun main(args: Array<String>) {
//直接展示错误
try {
"abc".toInt()
}catch (e:Exception){
print(e)
}
//忽略错误
val a:Int?=try{
"3ss".toInt()
}catch (e:Exception){
null
}
}
以上是关于Kotlin基础-异常处理错误的主要内容,如果未能解决你的问题,请参考以下文章
Kotlin学习之旅解决错误:kotlin.NotImplementedError: An operation is not implemented: Not yet implemented(代码片段