1

请问可以把altm->tm_mday转成字符串吗?

我试过这个,但是,这行不通!

time_t now = time(0); 
tm *ltm = localtime(&now); 
String dateAjoutSysteme = ltm->tm_mday + "/" + (1 + ltm->tm_mon) + "/" + (1900 + ltm->tm_year) + " " + (1 + ltm->tm_hour) + ":" + (1 + ltm->tm_min) + ":" + (1 + ltm->tm_sec);
4

2 回答 2

2

您可以time_t使用复杂的strftime或简单的asctime函数转换为char数组,然后使用相应的std::string构造函数。简单的例子:

std::string time_string (std::asctime (timeinfo)));

编辑:

特别是对于您的代码,答案是:

 std::time_t now = std::time(0);
 tm *ltm = std::localtime(&now); 
 char mbstr[100];
 std::strftime(mbstr, 100, "%d/%m/%Y %T", std::localtime(&t));
 std::string dateAjoutSysteme (mbstr);
于 2014-02-05T22:14:13.307 回答
1

我完全不相信这是最好的方法,但它确实有效:

#include <time.h>
#include <string>
#include <sstream>
#include <iostream>
int main() {
    time_t now = time(0);
    tm *ltm = localtime(&now);
    std::stringstream date;
    date << ltm->tm_mday
         << "/"
         << 1 + ltm->tm_mon
         << "/"
         << 1900 + ltm->tm_year
         << " "
         << 1 + ltm->tm_hour
         << ":"
         << 1 + ltm->tm_min
         << ":"
         << 1 + ltm->tm_sec;
    std::cout << date.str() << "\n";
}

strftime()函数将为您完成大部分工作,但使用 a 构建字符串的各个部分stringstream可能更普遍有用。

于 2014-02-05T22:17:57.257 回答