作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 C++ 的新手。我需要获取当前年份并将其存储在一个整数中。
我已经找到了这个解决方案:
std::time_t result = std::time(nullptr);
std::istringstream iss(ctime(&result));
iss.ignore(20);
int year;
iss >> year;
我觉得这个解决方案有点难看,即使它有效,因为它看起来不是很健壮,而且需要很多步骤才能完成。
还有更好的方法吗?
最佳答案
C++20,你可以使用 std::chrono
来达到这个目的。
P0355R7 Extending to Calendars and Time Zones
#include <iostream>
#include <format>
#include <chrono>
int main()
{
const auto now = std::chrono::system_clock::now();
std::cout << std::format("{:%Y}", now); // => 2021
}
关于c++ - 在 C++ 中获取当前年份的更优雅的方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58151350/
我是一名优秀的程序员,十分优秀!