Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth
Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

42,683 questions

55,435 answers

573 users

How to use thread sleep in C++

1 Answer

0 votes
#include <iostream>
#include <thread>
#include <chrono>

int main() {
    try {
        auto start = std::chrono::steady_clock::now();
        
        std::this_thread::sleep_for(std::chrono::milliseconds(1000));
        
        auto end = std::chrono::steady_clock::now();
        
        std::cout << "Sleep time in ms = " 
                  << std::chrono::duration_cast<std::chrono::milliseconds>(end - start).count() 
                  << std::endl;

    } catch (const std::exception& e) {
        std::cout << e.what() << std::endl;
    }
}


   
/*
run:
   
Sleep time in ms = 1000
   
*/

 



answered Sep 1, 2024 by avibootz

Related questions

1 answer 122 views
122 views asked Sep 1, 2024 by avibootz
1 answer 139 views
139 views asked Sep 1, 2024 by avibootz
1 answer 125 views
125 views asked Sep 1, 2024 by avibootz
4 answers 2,782 views
2,782 views asked Mar 24, 2021 by avibootz
...