资源简介
20170526154614428.Net程序突破内存2G访问限制的程序代码.zip

代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;
namespace AweSimple
{
class Program
{
static void TestSpeed()
{
try
{
byte[] inputBuffer = new byte[1024];
Stopwatch stopWatch = new Stopwatch();
using (AweStream.AweStream aweStream = new AweStream.AweStream(1024 * 1024 * 100))
{
//Map
aweStream.Map();
stopWatch.Start();
//Copy one bytes
//Use unsafe pointer
for (int i = 0; i < 1024 * 1024 * 100; i++)
{
unsafe
{
aweStream.LpMemory[i] = 1;
}
}
stopWatch.Stop();
Console.WriteLine(stopWatch.ElapsedMilliseconds);
aweStream.Position = 0;
//Block copy
stopWatch.Reset();
stopWatch.Start();
for (int i = 0; i < 1024 * 100; i++)
{
unsafe
{
aweStream.Write(inputBuffer 0 1024);
}
}
stopWatch.Stop();
Console.WriteLine(stopWatch.ElapsedMilliseconds);
//UnMap
aweStream.UnMap();
}
byte[] ManageBuf = new byte[1024 * 1024 * 100];
stopWatch.Reset();
stopWatch.Start();
for (int i = 0; i < 1024 * 1024 * 100; i++)
{
ManageBuf[i] = 1;
}
stopWatch.Stop();
Console.WriteLine(stopWatch.ElapsedMilliseconds);
stopWatch.Reset();
stopWatch.Start();
for (int i = 0; i < 1024 * 100; i++)
{
Array.Copy(inputBuffer 0 ManageBuf i * 1024 1024);
}
stopWatch.Stop();
Console.WriteLine(stopWatch.ElapsedMilliseconds);
}
catch (Exception e)
{
Console.WriteLine(e.Message);
Console.WriteLine(e.StackTrace);
}
}
static void Main(string[] args)
{
TestSpeed();
string input = Console.ReadLine();
List aweStreams = new List();
while (true)
{
switch (input)
{
case “a“:
try
{
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2008-11-06 17:03 AweSimple\
文件 2265 2008-11-04 17:49 AweSimple\AweSimple.csproj
文件 5361 2008-11-06 16:45 AweSimple\Program.cs
目录 0 2008-11-04 18:05 AweSimple\Properties\
文件 1298 2008-11-04 18:05 AweSimple\Properties\AssemblyInfo.cs
目录 0 2008-11-06 17:03 AweStream\
文件 11105 2008-11-06 15:46 AweStream\AweStream.cs
文件 2449 2008-11-06 15:20 AweStream\AweStream.csproj
文件 692 2008-11-04 17:38 AweStream\AweStreamException.cs
目录 0 2008-11-04 18:05 AweStream\Properties\
文件 1421 2008-11-04 18:05 AweStream\Properties\AssemblyInfo.cs
目录 0 2008-11-06 15:20 AweStream\Win32\
文件 2748 2008-11-06 15:20 AweStream\Win32\AweApi.cs
文件 1686 2008-11-06 15:20 AweStream\Win32\Buffer.cs
文件 2208 2008-11-06 15:20 AweStream\Win32\General.cs
文件 5009 2008-11-06 15:20 AweStream\Win32\LoggedSetLockPagesPrivilege.cs
文件 551 2008-11-06 15:18 AweStream\Win32\LoggedSetLockPagesPrivilegeException.cs
文件 1397 2008-11-04 12:15 AweSimple.sln
文件 35328 2008-11-06 17:02 AweSimple.suo
- 上一篇:Web版流程图设计器WorkFlowBS
- 下一篇:labview实现图像分类
相关资源
- 计算机图形学 边填充算法实现代码
- 电力系统潮流计算程序集合
- oracle数据迁移项目实施方案
- Web Api 通过文件流 文件到本地
- Visio图标-最新最全的网络通信图标库
- Spire API文档
- OpenGL参考手册
- Python中Numpy库最新教程
- SPD博士V5.3.exe
- 直流无刷电机方波驱动 stm32 例程代码
- layui后台管理模板
- 仿知乎界面小程序源代码
- 云平台-阿里云详细介绍
- photoshop经典1000例
- scratch垃圾分类源码(最终版本).sb
- IAR ARM 7.8破解
- TI CCS V5.4 安装步骤及破解文件
- 松下plc FP-XH的驱动
- 局域网硬件信息收集工具
- 加快Windows XP操作系统开机速度
- 联想启天M4350 BIOS升级文件
- 操作系统教程课后答案华中科技大学
- 用友ERP考试系统练习题库及答案
- 北京邮电大学数据结构历年考研真题
- 真正!!!概率论与数理统计浙江大
- TMS320VC5509A_开发板使用手册
- hxdef100源码、远控、后门
- CentOS-6.7-x86_64-bin-DVD1to2
- 点阵字库显示中英文
- caxa实体设计2019破解补丁
评论
共有 条评论