VC++获得当前系统时间的几种方案

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

VC++获得当前系统时间的几种方案

//方案—优点:仅使用C标准库;缺点:只能精确到秒级

#include

#include

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;

}

//方案二优点:能精确到毫秒级;缺点:使用了windows API

#include

#include

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;

}

//方案三,优点:利用系统函数

#include

#include

using namespace std;

void main(){

system("time");

}

可以改变电脑的时间设定

方案4:

#include

#include

using namespace std;

int main()

{

time_t now_time;

now_time = time(NULL);

cout<

return 0;

}

另一:_strdate(tempstr);

另二:

CString CTestView::GetTime()

{

CTime CurrentTime=CTime::GetCurrentTime();

CString strTime;

strTime.Format("%d:%d:%d",CurrentTime.GetHour(), CurrentTime.GetMinute(),CurrentTime. GetSecond());

return strTime;

相关文档
最新文档