gpt4 book ai didi

c# - Debug.Assert/Debug.Fail 是否自动条件编译#if "DEBUG"

转载 作者:太空狗 更新时间:2023-10-29 20:46:27 28 4
gpt4 key购买 nike

Debug.Assert/Debug.Fail 是否自动条件编译#if "DEBUG"?或者它是否更像是没有附加调试器(即使在发行版中)它什么也做不了?如果是这样,将它们留在您的代码中是否会对性能产生影响?或者它们真的不应该出现在生产代码中,而只是测试或条件代码?

最佳答案

不,如果 undefined symbol ,则整个调用(包括任何表达式求值)都会从编译中删除。这非常重要 - 如果表达式中有任何副作用,如果未定义 DEBUG,它们将不会发生。这是一个简短但完整的程序来演示:

using System;
using System.Diagnostics;

class Test
{
static void Main()
{
int i = 0;
Debug.Assert(i++ < 10);
Console.WriteLine(i);
}
}

如果定义了 DEBUG,则打印 1,否则打印 0。

由于这种行为,您不能在条件编译方法上使用 out 参数:

using System;
using System.Diagnostics;

class Test
{
static void Main()
{
int i ;
MethodWithOut(out x);
}

[Conditional("FOO")]
static void MethodWithOut(out int x)
{
x = 10;
}
}

这给出了错误:

Test.cs(13,6): error CS0685: Conditional member 'Test.MethodWithOut(out int)' cannot have an out parameter

关于c# - Debug.Assert/Debug.Fail 是否自动条件编译#if "DEBUG",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/622743/

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