gpt4 book ai didi

c# - RunClassConstructor 是否保证只运行一次类型的静态构造函数?

转载 作者:太空狗 更新时间:2023-10-29 18:33:26 25 4
gpt4 key购买 nike

我正在使用这段代码调用一个类的静态构造函数:

Type type;
System.Runtime.CompilerServices.RuntimeHelpers.RunClassConstructor(type.TypeHandle);

这会导致 cctor 运行两次吗?

最佳答案

RunClassConstructor只运行一次静态构造函数,即使你调用它两次。试试看 ;)

using System.Runtime.CompilerServices;
...

void Main()
{
RuntimeHelpers.RunClassConstructor(typeof(Foo).TypeHandle);
RuntimeHelpers.RunClassConstructor(typeof(Foo).TypeHandle);
Foo.Bar();
}

class Foo
{
static Foo()
{
Console.WriteLine("Foo");
}

public static void Bar()
{
Console.WriteLine("Bar");
}
}

此代码打印:

Foo
Bar

关于c# - RunClassConstructor 是否保证只运行一次类型的静态构造函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2658561/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com