Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Linux 和 Qt。我只想在调试时编译某些代码。在 Windows 中,我习惯于执行以下操作:
#ifdef _DEBUG ..code... #endif
然而,这不起作用。我正在编译调试版本而不是发布版本。在发布时不编译某些代码,但在调试构建时编译它们的方法是什么?
#ifdef QT_DEBUG
..代码...
#万一