std::this_thread::yield() vs std::this_thread::sleep_for()?

后端 未结 2 486
囚心锁ツ
囚心锁ツ 2020-12-13 06:06

I wanted to know what is the difference between C++11 std::this_thread::yield() and std::this_thread::sleep_for()? And how to decide what to use? T

2条回答
  •  萌比男神i
    2020-12-13 06:48

    std::this_thread::yield tells the implementation to reschedule the execution of threads, that should be used in a case where you are in a busy waiting state, like in a thread pool:

    ...
    while(true) {
      if(pool.try_get_work()) {
        // do work
      }
      else {
        std::this_thread::yield(); // other threads can push work to the queue now
      }
    }
    

    std::this_thread::sleep_for can be used if you really want to wait for a specific amount of time. This can be used for task, where timing really matters, e.g.: if you really only want to wait for 2 seconds. (Note that the implementation might wait longer than the given time duration)

提交回复
热议问题