在C++中处理时间戳数据通常需要使用标准库中的时间处理类。以下是一种常见的处理时间戳数据的方法:
#include <iostream>
#include <ctime>
time_t currentTime = time(0);
char buffer[80];
strftime(buffer, 80, "%Y-%m-%d %H:%M:%S", localtime(¤tTime));
std::string currentTimeStr(buffer);
tm *timeInfo = localtime(¤tTime);
int year = 1900 + timeInfo->tm_year;
int month = 1 + timeInfo->tm_mon;
int day = timeInfo->tm_mday;
int hour = timeInfo->tm_hour;
int minute = timeInfo->tm_min;
int second = timeInfo->tm_sec;
这样就可以在C++中方便地处理时间戳数据了。需要注意的是,时间戳通常是以秒为单位的整数,需要根据实际需求进行格式化显示。