作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
所以我从this question了解到用于构造 chrono::year
的整数对应于Anno Domini 0的起源。
所以我的问题是,如果我想获得当前的 chrono::year
怎么办。有那个功能吗?我显然可以做到:
const auto time = std::time(nullptr);
const auto current_date = *std::gmtime(&time);
const chrono::year foo{ current_date.tm_year + 1900 };
但这似乎是一个相当复杂的过程。我有更好的选择吗?
最佳答案
using namespace std::chrono;
year_month_day ymd = floor<days>(system_clock::now());
const year foo = ymd.year();
关于c++ - 如何用当前年份填充 chrono::year?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52394623/
我是一名优秀的程序员,十分优秀!