C++中如何使用Java的new Date().getTime()方法?

2025-01-01 08:06:44
推荐回答(2个)
回答1:

你的意思是获得网络时间,这个在用C++中可以用,GetLocalTime()函数,在所有的桌面应用程序中,该函数都是用来获得系统时间的最佳选择~
也可以借助C标准库的 #include
time_t t = time(0) ;

回答2:

time_t time(time_t * tval);

GetSystemTime()

GetLocalTime()

CTime 等等,这些是你可以使用的。。