标签: c++ debugging release
如果构建作为Debug或Release运行,我想检查C ++ 2010。 有没有一种简单的方法可以检查?
谢谢。
答案 0 :(得分:15)
VisualStudio生成_DEBUG和NDEBUG作为define。你可以在编译时检查它。
_DEBUG
NDEBUG
define
#ifdef _DEBUG // THE CODE IS COMPILING IN DEBUG MODE. #endif