/* *对可能发生执行异常的代码的一种保护措施 * 默认异常类 :EXception * * * */ fun main(args: Array<String>) { //直接展示错误 try { "abc".toInt() }catch (e:Exception){ print(e) } //忽略错误 val a:Int?=try{ "3ss".toInt() }catch (e:Exception){ null } }
时间: 2024-11-10 14:47:21
/* *对可能发生执行异常的代码的一种保护措施 * 默认异常类 :EXception * * * */ fun main(args: Array<String>) { //直接展示错误 try { "abc".toInt() }catch (e:Exception){ print(e) } //忽略错误 val a:Int?=try{ "3ss".toInt() }catch (e:Exception){ null } }