Dart编程实例 - 异常处理Finally 块 Dart编程实例 - on…catch Dart编程实例 - 抛出异常 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编程实例 - on…catch Dart编程实例 - 抛出异常