欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

[VB.NET Tips]Try...Catch...End Try的另一种用法

程序员文章站 2023-11-03 18:06:22
有时在调用一个方法时,会进行异常处理。但是当方法内部出现错误时,无法快速定位到是哪一行代码有问题。 下面介绍一下Try的另一个用法: Try...Catch ex As Exception When expression 当expression为True时处理异常,否则把异常抛到上一层调用。 ......

有时在调用一个方法时,会进行异常处理。但是当方法内部出现错误时,无法快速定位到是哪一行代码有问题。
下面介绍一下try的另一个用法:
try...catch ex as exception when expression
当expression为true时处理异常,否则把异常抛到上一层调用。

    dim isrelease as boolean = true         '确定是否是release版本

    sub main()

        dim reuslt as integer

#if debug then

        isrelease = false

#end if

        reuslt = divide(10, 0)
        console.writeline("结果是:" & reuslt)

        console.read()

    end sub

    private function divide(byval x as integer, byval y as integer) as integer

        dim reuslt as integer

        try

            return x / y

        catch ex as exception when isrelease        '当isrelease为true时处理异常,否则把异常抛出

            console.writeline("错误:" & ex.message)

        end try

    end function