Dart编程实例 - on…catch

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

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

本文为大家分享 Dart编程实例 - 异常处理 finally 块 的具体示例代码,提供大家参考,具体内容如下:main() { int x = 12; int y = 0; int re ...