StackOverflowException 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 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 实例的初始属性值。
properties | 值 |
---|---|
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)
参数
注解
下表显示了 StackOverflowException 实例的初始属性值。
properties | 值 |
---|---|
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 属性返回传递到构造函数中的相同值,或者如果 Nothing
属性不向构造函数提供内部异常值,则为空引用(在 Visual Basic 中为 InnerException)。
下表显示了 StackOverflowException 实例的初始属性值。
properties | “值” |
---|---|
InnerException | 内部异常引用。 |
Message | 错误消息字符串。 |