首页 > 建站教程 > dart >  Dart编程实例 - 抛出异常正文

Dart编程实例 - 抛出异常

Dart编程实例 - 抛出异常

main() {

   try {

      test_age(-2);

   }



   catch(e) {

      print('Age cannot be negative');

   }

}  

void test_age(int age) {

   if(age<0) {

      throw new FormatException();

   }

}