#include <chrono>
#include <iostream>
#include <format>
namespace chrono = std::chrono;
void showCurrentMonth() {
// 获取当前时间
chrono::time_point now{ chrono::system_clock::now() };
// 将时间转换为year_month_day
chrono::year_month_day ymd{ chrono::floor<chrono::days>(now) };
// 获取当前年月(类型为year_month)
chrono::year_month currentYearMonth = ymd.year() / ymd.month();
}
// 获取当月第一天
const auto firstDay = yearMonth / 1d;
// 获取当月最后一天
const auto lastDay = chrono::year_month_day(yearMonth / chrono::last);
// 输出格式化的标题(年份与月份)
std::string titleLine = std::format("** {:%Y-%m} **", yearMonth);
// 输出日历表头(从周一到周日)
std::vector<std::string> headerLineParts;
for (const auto& weekday : Weekdays) {
headerLineParts.push_back(std::format(ZhCNLocale, "{:L%a}", weekday));
}
// 通过weekday获取某一天是周几
auto currentWeekday = chrono::weekday{ std::chrono::sys_days{ currentDay } };
// 通过iso_encoding获取周几的编码(1-7)
auto currentWeekdayIndex = currentWeekday.iso_encoding() - 1;
// 计算本周第一天
auto firstDayOfWeek = chrono::year_month_day{ std::chrono::sys_days{ currentDay } - chrono::days(currentWeekdayIndex) };
C++标准库用chrono获取时间
C++有2种常用的获取当前时间的方式。本次主要围绕chrono展开。我的需求是,获取当前时间,并且打印到屏幕上。然后我就使用了这个system_clock::now()
错误示范
#include <iostream>
#include <chrono>
using namespace std;
int main(){
auto start = std::chrono::system_clock::now();
cout<<"today is"<<start<<endl;
}
使用上面这段代码并不行!因为start没有重载<<运算符。打印需要结合其他工具。如下:
#include <iostream>
#include <chrono>
using namespace std;
int main(){
auto start = std::chrono::system_clock::now();
std::time_t tt;
tt=std::chrono::system_clock::to_time_t(start);
string t=ctime(&tt);
cout<<"today is"<<t<<endl;
}
到此这篇关于c++ chrono 获取当前时间的文章就介绍到这了,更多相关c++ chrono 获取当前时间内容请搜索软件开发网以前的文章或继续浏览下面的相关文章希望大家以后多多支持软件开发网!