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

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

main() {
   int x = 12;
   int y = 0;
   int res;  
   try {
      res = x ~/ y;
   }
   on IntegerDivisionByZeroException {
      print('Cannot divide by zero');
   }
   finally {
      print('Finally block executed');
   }
}

本文为大家分享 Dart编程实例 - 抛出异常 的具体示例代码,提供大家参考,具体内容如下:main() { try { test_age(-2); } catch(e) { print('Age can ...