C/C++程式碼獲取當前時間的:年月日時分秒

stpeace發表於2017-12-24

       直接上菜:

#include <iostream>
#include <string>
using namespace std;

static string  getCurrentTimeStr()
{
	time_t t = time(NULL);
	char ch[64] = {0};
	strftime(ch, sizeof(ch) - 1, "%Y-%m-%d %H:%M:%S", localtime(&t));     //年-月-日 時-分-秒
	return ch;
}

int main()
{
	cout << getCurrentTimeStr() << endl;
	return 0;
}
       結果:

ubuntu@VM-0-13-ubuntu:~$ ./a.out 
2017-12-24 16:31:17
ubuntu@VM-0-13-ubuntu:~$ date
Sun Dec 24 16:31:19 CST 2017
ubuntu@VM-0-13-ubuntu:~$ 

      good



相關文章