方案1:优点:仅使用C标准库;缺点:只能精确到秒级
#include <time.h>
#include <stdio.h>
int main( void )
{
time_t t = time( 0 );
char tmp[64];
strftime( tmp, sizeof(tmp), "%Y/%m/%d %X %A 本年第%j天 %z",
localtime(&t) );
puts( tmp );
return 0;
}
方案2:优点:能精确到毫秒级;缺点:使用了windows API
#include <windows.h>
#include <stdio.h>
int main( void )
{
SYSTEMTIME sys;
GetLocalTime( &sys );
printf( "%4d/%02d/%02d %02d:%02d:%02d.%03d 星期%1d\n"
,sys.wYear,sys.wMonth,sys.wDay
,sys.wHour,sys.wMinute,sys.wSecond,sys.wMilliseconds
,sys.wDayOfWeek);
return 0;
}
方案3:优点:利用系统函数,可以改变电脑的时间设定
#include<stdlib.h>
#include<iostream>
using namespace std;
void main(){
system("time");
}
方案4:将当前时间折算为秒级,再通过相应的时间换算即可
#include<iostream>
#include<ctime>
using namespace std;
int main()
{
time_t now_time;
now_time = time(NULL);
cout<<now_time;
return 0;
}
方案5:
CTime t=CTime::GetCurrentTime();
CString str=t.Format("%H:%M:%S");
SetDlgItemText(IDC_EDIT1,str);