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.
在 C/C++ 中,我们可以使用#ifndef RELEASE #endif包含调试源,例如一些额外的测试和/或控制台打印等
#ifndef RELEASE #endif
有没有办法在 java 或任何类似的替代方案中做到这一点?
您可以添加一个static final boolean变量,然后使用简单的if语句。
static final boolean
if
如果编译器可以确定表达式是,false那么它不会将条件编译到您的代码中。
false