gpt4 book ai didi

c# - 变量在 C# Release x64 中不递增

转载 作者:太空狗 更新时间:2023-10-29 19:44:35 25 4
gpt4 key购买 nike

有人可以向我解释为什么这段代码在 x86 平台上执行时运行良好,而在 x64 平台上运行失败吗?

结果:

  • x86 调试:12345678910
  • x64 调试:12345678910
  • x86 版本:12345678910
  • x64 版本:1111111111

如果我改变一些东西,比如删除一个未使用的变量,或者如果我在 p_lFirstId++ 之后删除无用的 for 循环,奇怪的行为就会消失。

我发现在我的发布配置中将“pdb-only”更改为“full”,它又可以工作了。

如果您直接从 visual studio 运行代码,它也运行良好。

这是 JIT 编译器错误吗?

提前谢谢你。

class Program
{
static void Main(string[] args)
{
Test(null, null, null, 0, 1);
}

public static void Test(
List<string> liste, List<string> unused1,
string unused2, int unused3, long p_lFirstId)
{
liste = new List<string>();

StringBuilder sbSql = new StringBuilder();

for (int i = 0 ; i < 10 ; i++)
{
sbSql.Append(p_lFirstId);
p_lFirstId++;

foreach (string sColonne in liste)
{

}

}

System.Console.WriteLine(sbSql.ToString());
}
}

最佳答案

这是 CLR 中的错​​误。我建议联系 Microsoft 并要求他们在下一个版本中更正此错误。

关于c# - 变量在 C# Release x64 中不递增,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4715278/

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