ที่นี่เราจะดูวิธีการจับเวลาโดยใช้ C ++ ที่นี่เรากำลังสร้างคลาสหนึ่งที่เรียกว่าภายหลัง คลาสนี้มีคุณสมบัติดังต่อไปนี้
- int (มิลลิวินาทีเพื่อรอจนกว่าจะรันโค้ด)
- บูล (หากเป็นจริง จะส่งคืนทันที และเรียกใช้โค้ดหลังจากเวลาที่กำหนดบนเธรดอื่น)
- อาร์กิวเมนต์ของตัวแปร (เราต้องการฟีดไปที่ std::bind)
เราสามารถเปลี่ยน chrono::milliseconds เป็น nanoseconds หรือ microseconds เป็นต้น เพื่อเปลี่ยนความแม่นยำได้
โค้ดตัวอย่าง
#include <functional> #include <chrono> #include <future> #include <cstdio> class later { public: template <class callable, class... arguments> later(int after, bool async, callable&& f, arguments&&... args){ std::function<typename std::result_of<callable(arguments...)>::type()> task(std::bind(std::forward<callable>(f), std::forward<arguments>(args)...)); if (async) { std::thread([after, task]() { std::this_thread::sleep_for(std::chrono::milliseconds(after)); task(); }).detach(); } else { std::this_thread::sleep_for(std::chrono::milliseconds(after)); task(); } } }; void test1(void) { return; } void test2(int a) { printf("result of test 2: %d\n", a); return; } int main() { later later_test1(3000, false, &test1); later later_test2(1000, false, &test2, 75); later later_test3(3000, false, &test2, 101); }
ผลลัพธ์
$ g++ test.cpp -lpthread $ ./a.out result of test 2: 75 result of test 2: 101 $
ผลลัพธ์แรกหลังจาก 4 วินาที ผลลัพธ์ที่สองหลังจากสามวินาทีจากอันแรก