打造自己的开机启动时间工具

Windows API提供了一个接口GetTickCount,可以获取当前的系统运行时间,通过在开机时运行此程序,即可获得系统的开机时间。下面是MSDN中对GetTickCount函数的说明:


GetTickCount

The GetTickCount function retrieves the number of milliseconds that have elapsed since the system was started. It is limited to the resolution of the system timer. If you need a higher resolution timer, use a

DWORD GetTickCount(VOID)

Parameters

This function has no parameters.

Return Values

The return value is the number of milliseconds that have elapsed since the system was started. 


下面是一个例子:
#include <iostream>
#include <windows.h>
using namespace std;

void main()
{
	DWORD dwCount;
	dwCount=GetTickCount();
	float fCount=dwCount/1000;
	cout<<"您的的开机时间为:"<<fCount<<"秒"<<endl;
	getchar();
}
将此程序编译后添加到开机启动项即可。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值