gpt4 book ai didi

c# - C# if/else 上的编译器优化

转载 作者:行者123 更新时间:2023-11-30 14:01:27 25 4
gpt4 key购买 nike

我对编译器和.Net如何优化生成的机器码了解不多,但想了解以下场景:

    class AnyClass
{
public bool anyFlag;
AnyClass()
{
anyFlag = true;
}

public void Action()
{
if(anyFlag)
//Perform Certain Actions
}
}

anyFlag 在整个程序范围内不会改变。编译器会为 Action 方法生成 MIL/机器代码吗?如果是这样,它会在那里检查 if 吗?

最佳答案

在你的情况下,编译器不会过滤 if 语句,因为你的 anyFlag 是公共(public)的(因此它可以从多个地方更改)并且因为该值仅在构造函数中设置,编译器现在也没有这个值直到运行时。

下面的代码做你想做的:

static void MyFunc()
{
const bool flag = true;

string s = null;
if (flag)
{
s = "a";
}
else
{
s = "b";
}
}

如果您在 Visual Studio 中插入此代码,您将看到生成的警告,指出 s="b";将永远无法到达,此代码将被优化掉。

关于c# - C# if/else 上的编译器优化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8137735/

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