Dart编程实例 - 异常处理 catch 块

本文为大家分享 Dart编程实例 - 异常处理 catch 块 的具体示例代码,提供大家参考,具体内容如下:

main() {
   int x = 12;
   int y = 0;
   int res;  
   try {  
      res = x ~/ y;
   }  
   catch(e) {
      print(e);
   }
}

本文为大家分享 Dart编程实例 - on…catch 的具体示例代码,提供大家参考,具体内容如下:main() { int x = 12; int y = 0; int res; try ...