C++ 写一个简单的定时器类

一、前言

这个东西比较简单,不废话,直接上代码

二、代码

2.1 Timer.h

#pragma once
#include <windows.h>  // 包含BOOL与DWORD

#define RATE_MS_TO_SEC 1000  // 1s = 1000ms

class CTimer
{
public:
	CTimer();
	virtual ~CTimer();

	void    StartTimer();
	BOOL    TimeOver(long msTime);
	long    Get_secTime();
	long    Get_msTime();

private:
	DWORD	m_Start;
	DWORD	m_End;
};


2.2 Timer.cpp

#include "Timer.h"


CTimer::CTimer()
{
}


CTimer::~CTimer()
{
}

void  CTimer::StartTimer(){
	m_Start = GetTickCount64();
}
BOOL  CTimer::TimeOver(long msTime) {
	m_End = GetTickCount64();
	if (m_End - m_Start >= msTime * RATE_MS_TO_SEC){
		return TRUE;
	}
	return FALSE;
}
long  CTimer::Get_secTime() {
	m_End = GetTickCount64();
	long temp = m_End - m_Start;
	return temp / RATE_MS_TO_SEC;
}
long  CTimer::Get_msTime(){
	m_End = GetTickCount64();
	long temp = m_End - m_Start;
	return temp;
}

三、测试

3.1 测试代码

#include <iostream>
#include "Timer.h"

#define TIME_OUT 3 // 定时时间,3秒
using namespace std;
int main(){

	CTimer timer;
	timer.StartTimer();
	cout << "timer1 开始定时...."<< endl;
	do {
		cout << "timer1 已定时 " << timer.Get_secTime() << " s" << endl;
		cout << "timer1 已定时 " << timer.Get_msTime() << " ms" << endl;

	} while (!timer.TimeOver(TIME_OUT));

	cout << "timer1 定时时间到!" << endl;

	cin.ignore();
	return 0;
}

3.2 测试结果

在这里插入图片描述

抱歉,由于我是一个语言模型AI,无法在本地编和测试代码,以下是一个线程安全的事件驱动定时器的代码示例,供您参考: #include <iostream> #include <queue> #include <mutex> #include <condition_variable> #include <thread> #include <chrono> using namespace std; class Timer { public: Timer() { thread t(&Timer::run, this); t.detach(); } ~Timer() { { unique_lock<mutex> lock(mtx); stopFlag = true; cv.notify_one(); } } void addTask(int delay, function<void()> task) { unique_lock<mutex> lock(mtx); tasks.push({delay, task}); cv.notify_one(); } private: struct Task { int delay; function<void()> task; }; bool stopFlag = false; priority_queue<Task, vector<Task>, function<bool(Task, Task)>> tasks{[](Task a, Task b) { return a.delay > b.delay; }}; mutex mtx; condition_variable cv; void run() { while (true) { unique_lock<mutex> lock(mtx); while (tasks.empty() || stopFlag) { if (stopFlag) return; cv.wait(lock); } int delay = tasks.top().delay; auto task = tasks.top().task; tasks.pop(); lock.unlock(); cv.notify_one(); this_thread::sleep_for(chrono::milliseconds(delay)); task(); } } }; int main() { Timer timer; timer.addTask(1000, [] { cout << "Task 1: " << this_thread::get_id() << endl; }); timer.addTask(2000, [] { cout << "Task 2: " << this_thread::get_id() << endl; }); timer.addTask(3000, [] { cout << "Task 3: " << this_thread::get_id() << endl; }); timer.addTask(4000, [] { cout << "Task 4: " << this_thread::get_id() << endl; }); this_thread::sleep_for(chrono::milliseconds(5000)); return 0; }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值