1 Star 2 Fork 0

海绵宝宝卖海绵/NetLoop

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test_timer.cpp 542 Bytes
一键复制 编辑 原始数据 按行查看 历史
海绵宝宝卖海绵 提交于 2024-08-24 17:01 . 增加计时器Timer
#include "Timer.hpp"
int main() {
EventLoop loop;
Timer timer(&loop);
timer.addTimer(1000, [](){
std::cout << 1000 << std::endl;
}, false);
timer.addTimer(2000, [](){
std::cout << 2000 << std::endl;
}, false);
timer.addTimer(3000, [](){
std::cout << 3000 << std::endl;
}, false);
timer.addTimer(4000, [](){
std::cout << 4000 << std::endl;
}, false);
timer.addTimer(5000, [](){
std::cout << 5000 << std::endl;
}, false);
loop.run();
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/llxGiteeSpace/net-loop.git
git@gitee.com:llxGiteeSpace/net-loop.git
llxGiteeSpace
net-loop
NetLoop
master

搜索帮助