9
Bir kerelik 'if' yazmanın en zarif yolu
C ++ 17 beri iftam olarak böyle bir kez yürütülecek bir blok yazabilirsiniz : #include <iostream> int main() { for (unsigned i = 0; i < 10; ++i) { if (static bool do_once = true; do_once) { // Enter only once std::cout << "hello one-shot" << std::endl; // Possibly much …
137
c++
if-statement
c++17