Dart编程实例 - on…catch Dart编程实例 - 异常处理 使用catch块 Dart编程实例 - 异常处理Finally 块 Dart编程实例 - on…catch main() { int x = 12; int y = 0; int res; try { res = x ~/ y; } on IntegerDivisionByZeroException catch(e) { print(e); } } Dart编程实例 - 异常处理 使用catch块 Dart编程实例 - 异常处理Finally 块