You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
123456789101112131415 |
- >try-catch捕获异常
-
- ```
- Try
- {
- 有可能出现错误的代码写这里
- }
- Catch
- {
- 出错后处理
- }
- 上面的程序如何执行:
- 如果try中的代码没有出错,则程序正常运行try中的内容,不会执行catch中的内容。
- 如果try中的代码一旦出错,程序立即跳入catch中去执行代码,那么try中的代码后面的代码不再执行了
- ```
|