1 Star 2 Fork 8

白乾龙/cosmos深入应用c++11代码优化与工程级应用

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Timer.hpp 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
qicosmos 提交于 2015-04-14 11:34 . Update Timer.hpp
#pragma once
#include<chrono>
using namespace std;
using namespace std::chrono;
class Timer
{
public:
Timer() : m_begin(high_resolution_clock::now()) {}
void reset() { m_begin = high_resolution_clock::now(); }
//默认输出毫秒
int64_t elapsed() const
{
return duration_cast<chrono::milliseconds>(high_resolution_clock::now() - m_begin).count();
}
//默认输出秒
double elapsed_second() const
{
return duration_cast<duration<double>>(high_resolution_clock::now() - m_begin).count();
}
//微秒
int64_t elapsed_micro() const
{
return duration_cast<chrono::microseconds>(high_resolution_clock::now() - m_begin).count();
}
//纳秒
int64_t elapsed_nano() const
{
return duration_cast<chrono::nanoseconds>(high_resolution_clock::now() - m_begin).count();
}
////秒
//int64_t elapsed_seconds() const
//{
// return duration_cast<chrono::seconds>(high_resolution_clock::now() - m_begin).count();
//}
//分
int64_t elapsed_minutes() const
{
return duration_cast<chrono::minutes>(high_resolution_clock::now() - m_begin).count();
}
//时
int64_t elapsed_hours() const
{
return duration_cast<chrono::hours>(high_resolution_clock::now() - m_begin).count();
}
private:
time_point<high_resolution_clock> m_begin;
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/baiqianlong/cosmos.git
git@gitee.com:baiqianlong/cosmos.git
baiqianlong
cosmos
cosmos深入应用c++11代码优化与工程级应用
master

搜索帮助