📅  最后修改于: 2020-11-19 08:57:06             🧑  作者: Mango
例外是在程序执行期间出现的问题。例外是对程序运行时出现的异常情况的响应,例如尝试除以零。
异常提供了一种将控制权从程序的一部分转移到另一部分的方法。 VB.Net异常处理基于四个关键字-Try , Catch , Finally和Throw 。
尝试-尝试块标识将为其激活特定异常的代码块。其次是一个或多个Catch块。
捕获-程序在要处理问题的程序中的某个位置捕获带有异常处理程序的异常。 Catch关键字指示捕获异常。
最终-最终块用于执行给定的一组语句,无论是否引发异常。例如,如果打开文件,则无论是否引发异常,都必须关闭该文件。
抛出-问题出现时,程序将引发异常。这是使用Throw关键字完成的。
假设一个块将引发异常,则一种方法使用Try和Catch关键字的组合来捕获异常。 Try / Catch块放置在可能产生异常的代码周围。 Try / Catch块中的代码称为受保护的代码,使用Try / Catch的语法如下所示-
Try
[ tryStatements ]
[ Exit Try ]
[ Catch [ exception [ As type ] ] [ When expression ]
[ catchStatements ]
[ Exit Try ] ]
[ Catch ... ]
[ Finally
[ finallyStatements ] ]
End Try
您可以列出多个catch语句以捕获不同类型的异常,以防在不同情况下try块引发多个异常。
在.Net Framework中,异常由类表示。 .Net Framework中的异常类主要是直接或间接从System.Exception类派生的。从System.Exception类派生的某些异常类是System.ApplicationException和System.SystemException类。
System.ApplicationException类支持应用程序生成的异常。因此,程序员定义的异常应从此类派生。
System.SystemException类是所有预定义系统异常的基类。
下表提供了一些从Sytem.SystemException类派生的预定义异常类-
Exception Class | Description |
---|---|
System.IO.IOException | Handles I/O errors. |
System.IndexOutOfRangeException | Handles errors generated when a method refers to an array index out of range. |
System.ArrayTypeMismatchException | Handles errors generated when type is mismatched with the array type. |
System.NullReferenceException | Handles errors generated from deferencing a null object. |
System.DivideByZeroException | Handles errors generated from dividing a dividend with zero. |
System.InvalidCastException | Handles errors generated during typecasting. |
System.OutOfMemoryException | Handles errors generated from insufficient free memory. |
System.StackOverflowException | Handles errors generated from stack overflow. |
VB.Net以try和catch块的形式为异常处理问题提供了结构化的解决方案。使用这些块,核心程序语句与错误处理语句分离。
这些错误处理块是使用Try , Catch和Final关键字实现的。以下是发生除以零的条件时引发异常的示例-
Module exceptionProg
Sub division(ByVal num1 As Integer, ByVal num2 As Integer)
Dim result As Integer
Try
result = num1 \ num2
Catch e As DivideByZeroException
Console.WriteLine("Exception caught: {0}", e)
Finally
Console.WriteLine("Result: {0}", result)
End Try
End Sub
Sub Main()
division(25, 0)
Console.ReadKey()
End Sub
End Module
编译并执行上述代码后,将产生以下结果-
Exception caught: System.DivideByZeroException: Attempted to divide by zero.
at ...
Result: 0
您还可以定义自己的异常。用户定义的异常类是从ApplicationException类派生的。以下示例演示了这一点-
Module exceptionProg
Public Class TempIsZeroException : Inherits ApplicationException
Public Sub New(ByVal message As String)
MyBase.New(message)
End Sub
End Class
Public Class Temperature
Dim temperature As Integer = 0
Sub showTemp()
If (temperature = 0) Then
Throw (New TempIsZeroException("Zero Temperature found"))
Else
Console.WriteLine("Temperature: {0}", temperature)
End If
End Sub
End Class
Sub Main()
Dim temp As Temperature = New Temperature()
Try
temp.showTemp()
Catch e As TempIsZeroException
Console.WriteLine("TempIsZeroException: {0}", e.Message)
End Try
Console.ReadKey()
End Sub
End Module
编译并执行上述代码后,将产生以下结果-
TempIsZeroException: Zero Temperature found
如果对象是直接或间接从System.Exception类派生的,则可以抛出该对象。
您可以在catch块中使用throw语句将当前对象抛出为-
Throw [ expression ]
以下程序演示了这一点-
Module exceptionProg
Sub Main()
Try
Throw New ApplicationException("A custom exception _ is being thrown here...")
Catch e As Exception
Console.WriteLine(e.Message)
Finally
Console.WriteLine("Now inside the Finally Block")
End Try
Console.ReadKey()
End Sub
End Module
编译并执行上述代码后,将产生以下结果-
A custom exception is being thrown here...
Now inside the Finally Block