时间的API函数
#include<iostream>#include<windows.h>usingnamespacestd;intmain(){SYSTEMTIMEst;GetSyst...
#include<iostream>
#include<windows.h>
using namespace std;
int main()
{
SYSTEMTIME st;
GetSystemTime(&st); // Win32 API 获取系统当前时间,并存入结构体st中
cout<<st.wHour<<":"<<st.wMinute<<":"<<st.wSecond<<endl;
system("PAUSE");
return 0 ;
}
如上代码,cout<<st.wHour ,这里总是输出1,不知道为什么,现在明明是9点 展开
#include<windows.h>
using namespace std;
int main()
{
SYSTEMTIME st;
GetSystemTime(&st); // Win32 API 获取系统当前时间,并存入结构体st中
cout<<st.wHour<<":"<<st.wMinute<<":"<<st.wSecond<<endl;
system("PAUSE");
return 0 ;
}
如上代码,cout<<st.wHour ,这里总是输出1,不知道为什么,现在明明是9点 展开
迈杰
2024-11-30 广告
2024-11-30 广告
RNA-seq数据分析是转录组研究的核心,包括数据预处理、序列比对、定量分析、差异表达分析、功能注释和可视化等步骤。数据预处理主要是质量控制和去除低质量序列。序列比对使用HISAT2、STAR等工具将reads比对到参考基因组。定量分析评估...
点击进入详情页
本回答由迈杰提供
展开全部
因为GetSystemTime获得的时间是以格林威治时间格式表示的,也就是没加时区,我们是+8时区,所以你输出时需要在st.wHour后面+8
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
GetSystemTime
1、GetSystemTime -
VB声明
Declare Sub GetSYSTEMTIME Lib "kernel32" Alias "GetSystemTime" (lpSystemTime As SYSTEMTIME)
说明:在一个SYSTEMTIME中载入当前系统时间,这个时间采用的是“协同世界时间”(即UTC,也叫做GMT)格式
参数 类型及说明:lpSystemTime SYSTEMTIME,随同当前时间载入的结构
2、Ada声明
type WORD is mod 2**16;
-- SYSTEMTIME 结构
type SYSTEMTIME is record
year : word; -- 年
month : word; -- 月
dayofweek : word; -- 星期,0=星期日,1=星期一
day : word; -- 天
hour : word; -- 时
minute : word; -- 分
second : word; -- 秒
Milliseconds : word; -- 毫秒
end record;
type LPSYSTEMTIME is access SYSTEMTIME;
procedure GetSystemTime(SYSTIME:LPSYSTEMTIME);
function GetSystemTime(SYSTIME:LPSYSTEMTIME) return integer;
pragma import(stdcall,GetSystemTime,"GetSystemTime");
3、注意:
(1)参数SYSTIME必须首先分配内存空间,否则引起PROGRAM_ERROR 。
(2)该函数获取格林威治标准时间。
4、范例:
CTime time = CTime::GetCurrentTime(); ///构造CTime对象
int m_nYear = time.GetYear(); ///年
int m_nMonth = time.GetMonth(); ///月
int m_nDay = time.GetDay(); ///日
int m_nHour = time.GetHour(); ///小时
int m_nMinute = time.GetMinute(); ///分钟
int m_nSecond = time.GetSecond(); ///秒
1、GetSystemTime -
VB声明
Declare Sub GetSYSTEMTIME Lib "kernel32" Alias "GetSystemTime" (lpSystemTime As SYSTEMTIME)
说明:在一个SYSTEMTIME中载入当前系统时间,这个时间采用的是“协同世界时间”(即UTC,也叫做GMT)格式
参数 类型及说明:lpSystemTime SYSTEMTIME,随同当前时间载入的结构
2、Ada声明
type WORD is mod 2**16;
-- SYSTEMTIME 结构
type SYSTEMTIME is record
year : word; -- 年
month : word; -- 月
dayofweek : word; -- 星期,0=星期日,1=星期一
day : word; -- 天
hour : word; -- 时
minute : word; -- 分
second : word; -- 秒
Milliseconds : word; -- 毫秒
end record;
type LPSYSTEMTIME is access SYSTEMTIME;
procedure GetSystemTime(SYSTIME:LPSYSTEMTIME);
function GetSystemTime(SYSTIME:LPSYSTEMTIME) return integer;
pragma import(stdcall,GetSystemTime,"GetSystemTime");
3、注意:
(1)参数SYSTIME必须首先分配内存空间,否则引起PROGRAM_ERROR 。
(2)该函数获取格林威治标准时间。
4、范例:
CTime time = CTime::GetCurrentTime(); ///构造CTime对象
int m_nYear = time.GetYear(); ///年
int m_nMonth = time.GetMonth(); ///月
int m_nDay = time.GetDay(); ///日
int m_nHour = time.GetHour(); ///小时
int m_nMinute = time.GetMinute(); ///分钟
int m_nSecond = time.GetSecond(); ///秒
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询