StackOverflowException 构造函数

定义

初始化 StackOverflowException 类的新实例。

重载

StackOverflowException()

初始化 StackOverflowException 类的新实例,将新实例的 Message 属性设置为系统提供的消息,该消息描述错误,例如“请求的操作导致堆栈溢出”。此消息将考虑当前系统区域性。

StackOverflowException(String)

使用指定的错误消息初始化 StackOverflowException 类的新实例。

StackOverflowException(String, Exception)

使用指定的错误消息和对作为此异常原因的内部异常的引用初始化 StackOverflowException 类的新实例。

StackOverflowException()

Source:
StackOverflowException.cs
Source:
StackOverflowException.cs
Source:
StackOverflowException.cs

初始化 StackOverflowException 类的新实例,将新实例的 Message 属性设置为系统提供的消息,该消息描述错误,例如“请求的操作导致堆栈溢出”。此消息将考虑当前系统区域性。

public:
 StackOverflowException();
public StackOverflowException ();
Public Sub New ()

注解

下表显示了 StackOverflowException实例的初始属性值。

财产 价值
InnerException null
Message 本地化的错误消息字符串。

适用于

StackOverflowException(String)

Source:
StackOverflowException.cs
Source:
StackOverflowException.cs
Source:
StackOverflowException.cs

使用指定的错误消息初始化 StackOverflowException 类的新实例。

public:
 StackOverflowException(System::String ^ message);
public StackOverflowException (string? message);
public StackOverflowException (string message);
new StackOverflowException : string -> StackOverflowException
Public Sub New (message As String)

参数

message
String

描述错误的 String。 消息的内容旨在由人类理解。 此构造函数的调用方必须确保此字符串已本地化为当前系统区域性。

注解

下表显示了 StackOverflowException实例的初始属性值。

财产 价值
InnerException 空引用(Visual Basic 中的Nothing)。
Message 错误消息字符串。

适用于

StackOverflowException(String, Exception)

Source:
StackOverflowException.cs
Source:
StackOverflowException.cs
Source:
StackOverflowException.cs

使用指定的错误消息和对作为此异常原因的内部异常的引用初始化 StackOverflowException 类的新实例。

public:
 StackOverflowException(System::String ^ message, Exception ^ innerException);
public StackOverflowException (string? message, Exception? innerException);
public StackOverflowException (string message, Exception innerException);
new StackOverflowException : string * Exception -> StackOverflowException
Public Sub New (message As String, innerException As Exception)

参数

message
String

说明异常原因的错误消息。

innerException
Exception

是当前异常原因的异常。 如果 innerException 参数不是 null 引用(在 Visual Basic 中Nothing),则当前异常在处理内部异常的 catch 块中引发。

注解

作为上一个异常的直接结果引发的异常可以包括对 InnerException 属性中上一个异常的引用。 如果 InnerException 属性未向构造函数提供内部异常值,InnerException 属性将返回传递给构造函数的相同值,或者返回 null 引用(Nothing Visual Basic 中)。

下表显示了 StackOverflowException实例的初始属性值。

财产 价值
InnerException 内部异常引用。
Message 错误消息字符串。

另请参阅

适用于