本文介绍了如何声明仅调试语句的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在C#中,我可以使用以下代码来获取仅在调试构建期间执行的代码,如何在Xcode中执行相同的操作?

In C# I can use the following code to have code which only executes during debug build, how can I do the same in Xcode?

#if DEBUG
{
    // etc etc
}
#endif

推荐答案

应该为已经处于发布模式版本中的您定义NDEBUG符号

The NDEBUG symbol should be defined for you already in release mode builds

#ifndef NDEBUG
/* Debug only code */
#endif

通过使用NDEBUG,您只需避免为调试版本自己为编译器指定-D DEBUG参数

By using NDEBUG you just avoid having to specify a -D DEBUG argument to the compiler yourself for the debug builds

这篇关于如何声明仅调试语句的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-28 02:26