2
Kod blokları oluşturmak kötü bir uygulama mı?
C ++ 'da, aşağıdaki gibi bazı fonksiyonların içinde kod blokları oluşturmak kötü bir uygulamadır: bool f() { { double test = 0; test = // some other variable outside this function, for example. if (test == // some value) return true; } { double test = 0; test = // …