• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

.Net 实现纳秒级别计算

发布: 2007-7-01 11:09 | 作者: admin | 来源: | 查看: 44次 | 进入软件测试论坛讨论

领测软件测试网 Net 实现纳秒级别计算
1)建立VC.NET 托管类库

using namespace System;

namespace MLTimerDot

{

//得到计算机启动到现在的时钟周期

unsigned __int64 GetCycleCount(void)

{

_asm _emit 0x0F

_asm _emit 0x31

}

//声明 .NET 类

public __gc class MLTimer

{

protected:

UInt64 m_startcycle;

UInt64 m_overhead;

public:

MLTimer(void)

{

//为了计算更精确取得调用一个 GetCycleCount() 的时钟周期

m_overhead=0;

Start();

m_overhead=Stop();

}

//计算停止

UInt64 Stop(void)

{

return GetCycleCount()-m_startcycle-m_overhead;

}

//计算开始

void Start(void)

{

m_startcycle=GetCycleCount();

}

__property virtual UInt64 get_Overhead()

{

return m_overhead;

}

};

}

2)测试代码

//C# 引用后放一个Button 测试

private void button1_Click(object sender, System.EventArgs e)

{

MLTimerDot.MLTimer timer=new MLTimerDot.MLTimer();

timer.Start();

Thread.Sleep(1000);

UInt64 cpuspeed10=(ulong)(timer.Stop()/100000); //通过这个可以算出 CPU 的mhz

timer.Start();//开始

//测试代码(测试声明一个DataTable 用的时间)

DataTable td= new DataTable();

UInt64 time1=timer.Stop();//停止

String s= String.Format("CPU {0}.{1} mhz\n声明 MLTimer 类的系统开销 {2:n} 时钟周期\n本操作系统开销 {3:n} 个时钟周期\n使用 {4:n} ns",

cpuspeed10/10,cpuspeed10%10,timer.Overhead,

time1,

time1*10000/cpuspeed10);

MessageBox.Show(s);

}

/*-------------------------------------------------------------------------------------------

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网