gpt4 book ai didi

c++ - 通过C++程序更改本地时间

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:49:02 26 4
gpt4 key购买 nike

现在我国本地时间是:

3:43 PM   

我可以用 C++ 编写程序来将 Windows 7 系统上的时间更改为另一个时间吗?

例如将它设置为下午 5:00(增加)或减少?

最佳答案

在VC++中你可以试试。包括 Windows.h 头文件。

SetSystemTime Function

SYSTEMTIME st;
st.wYear = 2010;
st.wMonth = 5;
st.wDay = 2;
st.wHour = 7;
st.wMinute = 46;
st.wSecond = 31;
st.wMilliseconds = 345;
::SetSystemTime(&st);

关于c++ - 通过C++程序更改本地时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3487221/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com