如何通过C++修改系统时间?
2 回答
慕少森
TA贡献2019条经验 获得超9个赞
如下运用:
获取系统时间
SYSTEMTIME curr_st;
GetLocalTime(&curr_st);
修改系统时间
curr_st.wYear=2006;
curr_st.wMonth=12;
curr_st.wDay=1;
curr_st.wHour=3;
curr_st.wMinute=33;
curr_st.wSecond=59;
curr_st.wMilliseconds=999;
SetLocalTime(&curr_st);
- 2 回答
- 0 关注
- 1725 浏览
添加回答
举报
0/150
提交
取消