当前位置:  开发笔记 > 编程语言 > 正文

尝试Catch块

如何解决《尝试Catch块》经验,为你挑选了1个好方法。

我有以下代码

Try
    'Some code that causes exception
Catch ex as ExceptionType1
    'Handle Section - 1
Catch ex as ExceptionType2
    'Handle section - 2
Catch ex as ExceptionType3
    'Handle section - 3    
Finally
    ' Clean up
End Try

假设由部分-1处理的代码抛出ExceptionType1.在第1部分中处理之后,我可以将控制权传递给第2部分/第3部分吗?那可能吗?



1> kemiller2002..:

更改代码以捕获一个块中的所有异常,并从那里确定类型和执行路径.

推荐阅读
刘美娥94662
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有