[VB.NET Tips]Try...Catch...End Try的另一种用法
Posted tengwei6328
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[VB.NET Tips]Try...Catch...End Try的另一种用法相关的知识,希望对你有一定的参考价值。
有时在调用一个方法时,会进行异常处理。但是当方法内部出现错误时,无法快速定位到是哪一行代码有问题。
下面介绍一下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
以上是关于[VB.NET Tips]Try...Catch...End Try的另一种用法的主要内容,如果未能解决你的问题,请参考以下文章
vb2010 (vb.net )Socket套接字当网络中断时或服务器意外关机,客户端如何自动重新连接服务端
try/catch 和 MFC TRY/CATCH 有啥区别?