摘要: 异常处理 throw bool flag = false; if (flag == false) { throw ('this is a wrong tips'); } /* Unhandled exception: this is a wrong tips #0 main (file:///d:/ 阅读全文
posted @ 2021-02-12 14:20 漫游者杰特 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 控制流程语句 if-else语句 //标准语句 bool isWrong = true; bool isTesting = false; if (isWrong) { print('错误提示'); } else if (isTesting) { print('正在测试'); } else { pri 阅读全文
posted @ 2021-02-12 13:41 漫游者杰特 阅读(59) 评论(0) 推荐(0) 编辑