Std::thread Sleep Code Example


Example: cpp thread sleep

// this_thread::sleep_for example #include <iostream>       // std::cout, std::endl #include <thread>         // std::this_thread::sleep_for #include <chrono>         // std::chrono::seconds   int main()  {   std::cout << "countdown:\n";   for (int i=10; i>0; --i) {     std::cout << i << std::endl;     std::this_thread::sleep_for (std::chrono::seconds(1));   }   std::cout << "Lift off!\n";    return 0; }

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android SDK Location Should Not Contain Whitespace, As This Cause Problems With NDK Tools