Debug 类 (C++/CLI)
在 Visual C++ 应用程序中使用 Debug 时,该行为在调试版本和发布版本之间没有变化。
备注
Trace 的行为与 Debug 类的行为相同,但前者取决于所定义的符号 TRACE。 这意味着你必须将 #ifdef
用于任何与跟踪相关的代码来防止发布版本中出现调试行为。
示例:始终执行输出语句
说明
无论使用 /DDEBUG 还是 /DTRACE 进行编译,以下示例始终执行输出语句。
代码
// mcpp_debug_class.cpp
// compile with: /clr
#using <system.dll>
using namespace System::Diagnostics;
using namespace System;
int main() {
Trace::Listeners->Add( gcnew TextWriterTraceListener( Console::Out ) );
Trace::AutoFlush = true;
Trace::Indent();
Trace::WriteLine( "Entering Main" );
Console::WriteLine( "Hello World." );
Trace::WriteLine( "Exiting Main" );
Trace::Unindent();
Debug::WriteLine("test");
}
输出
Entering Main
Hello World.
Exiting Main
test
示例:使用 #ifdef 和 #endif 指令
说明
要获取预期行为(即,不为发布版本打印“测试”输出),必须使用 #ifdef
和 #endif
指令。 下面修改了前面的代码示例来演示此修补程序:
代码
// mcpp_debug_class2.cpp
// compile with: /clr
#using <system.dll>
using namespace System::Diagnostics;
using namespace System;
int main() {
Trace::Listeners->Add( gcnew TextWriterTraceListener( Console::Out ) );
Trace::AutoFlush = true;
Trace::Indent();
#ifdef TRACE // checks for a debug build
Trace::WriteLine( "Entering Main" );
Console::WriteLine( "Hello World." );
Trace::WriteLine( "Exiting Main" );
#endif
Trace::Unindent();
#ifdef DEBUG // checks for a debug build
Debug::WriteLine("test");
#endif //ends the conditional block
}