在C++中,可以使用标准库中的chrono来处理日期和时间。以下是一种有效的方法来存储和读取日期和时间:
#include <chrono>
#include <iostream>
int main() {
auto now = std::chrono::system_clock::now();
std::chrono::time_point<std::chrono::system_clock> time_point = now;
// 存储成功,现在time_point中包含了当前系统时间
return 0;
}
#include <chrono>
#include <iostream>
int main() {
auto now = std::chrono::system_clock::now();
std::chrono::time_point<std::chrono::system_clock> time_point = now;
auto time_since_epoch = time_point.time_since_epoch();
// 将时间间隔转换为秒数
auto seconds = std::chrono::duration_cast<std::chrono::seconds>(time_since_epoch).count();
std::cout << "Seconds since epoch: " << seconds << std::endl;
return 0;
}
通过以上方法,可以有效地存储和读取日期和时间。在实际应用中,可以根据需要进一步处理时间间隔,比如将其转换为日期时间格式,或进行时间计算等操作。