1. 程式人生 > >C/C++獲取當前時刻的時分秒

C/C++獲取當前時刻的時分秒

        看程式碼:

#include <iostream>
using namespace std;

int main()
{
	time_t currentTime;
    time(¤tTime);
    struct tm *p;
    p = localtime(¤tTime);
    cout << p->tm_hour << endl;
    cout << p->tm_min << endl;
    cout << p->tm_sec << endl;

	return 0;
}
       結果:

20
1
7

       這就是20:01:07, 不多說。