86

我编写了一个函数来获取当前日期和时间,格式为:DD-MM-YYYY HH:MM:SS. 它有效,但可以说,它非常丑陋。我怎样才能做完全相同但更简单的事情?

string currentDateToString()
{
    time_t now = time(0);
    tm *ltm = localtime(&now);

    string dateString = "", tmp = "";
    tmp = numToString(ltm->tm_mday);
    if (tmp.length() == 1)
        tmp.insert(0, "0");
    dateString += tmp;
    dateString += "-";
    tmp = numToString(1 + ltm->tm_mon);
    if (tmp.length() == 1)
        tmp.insert(0, "0");
    dateString += tmp;
    dateString += "-";
    tmp = numToString(1900 + ltm->tm_year);
    dateString += tmp;
    dateString += " ";
    tmp = numToString(ltm->tm_hour);
    if (tmp.length() == 1)
        tmp.insert(0, "0");
    dateString += tmp;
    dateString += ":";
    tmp = numToString(1 + ltm->tm_min);
    if (tmp.length() == 1)
        tmp.insert(0, "0");
    dateString += tmp;
    dateString += ":";
    tmp = numToString(1 + ltm->tm_sec);
    if (tmp.length() == 1)
        tmp.insert(0, "0");
    dateString += tmp;

    return dateString;
}
4

7 回答 7

184

从 C++11 开始,您可以使用std::put_time来自iomanip标头:

#include <iostream>
#include <iomanip>
#include <ctime>

int main()
{
    auto t = std::time(nullptr);
    auto tm = *std::localtime(&t);
    std::cout << std::put_time(&tm, "%d-%m-%Y %H-%M-%S") << std::endl;
}

std::put_time是一个流操纵器,因此它可以与std::ostringstream将日期转换为字符串一起使用:

#include <iostream>
#include <iomanip>
#include <ctime>
#include <sstream>

int main()
{
    auto t = std::time(nullptr);
    auto tm = *std::localtime(&t);

    std::ostringstream oss;
    oss << std::put_time(&tm, "%d-%m-%Y %H-%M-%S");
    auto str = oss.str();

    std::cout << str << std::endl;
}
于 2013-05-03T11:42:17.263 回答
133

非 C++11 解决方案:使用<ctime>标题,您可以使用strftime. 确保您的缓冲区足够大,您不会希望超出它并在以后造成严重破坏。

#include <iostream>
#include <ctime>

int main ()
{
  time_t rawtime;
  struct tm * timeinfo;
  char buffer[80];

  time (&rawtime);
  timeinfo = localtime(&rawtime);

  strftime(buffer,sizeof(buffer),"%d-%m-%Y %H:%M:%S",timeinfo);
  std::string str(buffer);

  std::cout << str;

  return 0;
}
于 2013-05-03T11:50:18.423 回答
27

您可以使用 time.h 的 asctime() 函数来简单地获取字符串。

time_t _tm =time(NULL );

struct tm * curtime = localtime ( &_tm );
cout<<"The current date/time is:"<<asctime(curtime);

样本输出:

The current date/time is:Fri Oct 16 13:37:30 2015
于 2013-05-03T11:48:25.167 回答
5
#include <chrono>
#include <iostream>

int main()
{
    std::time_t ct = std::time(0);
    char* cc = ctime(&ct);

    std::cout << cc << std::endl;
    return 0;
}
于 2018-09-13T11:55:30.517 回答
5

在 MS Visual Studio 2015 (14) 中使用 C++,我使用:

#include <chrono>

string NowToString()
{
  chrono::system_clock::time_point p = chrono::system_clock::now();
  time_t t = chrono::system_clock::to_time_t(p);
  char str[26];
  ctime_s(str, sizeof str, &t);
  return str;
}
于 2017-10-26T00:12:43.363 回答
2

使用 C++20,时间点格式(到字符串)在 (chrono) 标准库中可用。 https://en.cppreference.com/w/cpp/chrono/system_clock/formatter

#include <chrono>
#include <format>
#include <iostream>

int main()
{
   const auto now = std::chrono::system_clock::now();
   std::cout << std::format("{:%d-%m-%Y %H:%M:%OS}", now) << '\n';
}

输出

13-12-2021 09:24:44

它适用于具有最新 C++ 语言版本 (/std:c++latest) 的 Visual Studio 2019 (v16.11.5)。

于 2021-12-13T09:26:17.330 回答
2

我想使用 C++11 答案,但我不能,因为 GCC 4.9 不支持 std::put_time。

GCC 中的 std::put_time 实现状态?

我最终使用了一些 C++11 来稍微改进非 C++11 的答案。对于那些不能使用 GCC 5,但仍希望其日期/时间格式的 C++11 的用户:

 std::array<char, 64> buffer;
 buffer.fill(0);
 time_t rawtime;
 time(&rawtime);
 const auto timeinfo = localtime(&rawtime);
 strftime(buffer.data(), sizeof(buffer), "%d-%m-%Y %H-%M-%S", timeinfo);
 std::string timeStr(buffer.data());
于 2017-04-19T12:26:45.800 回答