C/C++代码获取今天凌晨零点零时零分的时间戳

        要用到, 记录一下:

#include 
using namespace std;

unsigned int getMorningTime() 
{  
    time_t t = time(NULL); 
    struct tm * tm= localtime(&t);  
    tm->tm_hour = 0;  
    tm->tm_min = 0;  
    tm->tm_sec = 0;  
    return  mktime(tm);  
}  

int main()
{
	cout << getMorningTime() << endl;
	return 0;
}
       结果:1509638400

    

      查了一下, 刚好就是今天凌晨零点零时零分的时间戳。


      不多说。

你可能感兴趣的:(S1:,C/C++,s2:,实用代码)