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