2
コードのブロックを作成するのは悪い習慣ですか?
C ++では、次のような関数内にコードのブロックを作成するのは悪い習慣ですか? bool f() { { double test = 0; test = // some other variable outside this function, for example. if (test == // some value) return true; } { double test = 0; test = // some variable outside this function, different from the last one. if (test …