C#指针操作Marshal实例
static void Main(string[] args)
{
byte[] a = new byte[]{,,,};
byte[] b = new byte[] {,,,};
IntPtr pt = Marshal.AllocHGlobal(a.Length);
//从source数组的startIndex下标开始复制length个对象到ptr;
Marshal.Copy(b,,pt+,b.Length);
//从ptr复制length个对象到目标数组的,从目标数组的startIndex开始写入。
Marshal.Copy((pt+),a,,);
unsafe
{
byte* pb = (byte*) pt;
for (int i = ; i < a.Length; i++)
{
Console.WriteLine("/b:"+(*pb++) + "/a:" + a[i]);
}
}
//释放非托管内存;
Marshal.FreeHGlobal(pt); byte[] arBt = new byte[]{,,,,,,,,,,,,,,0x0f,};
IntPtr ptr = Marshal.AllocHGlobal(arBt.Length);
//写入数据;
Marshal.Copy(arBt, , ptr, arBt.Length);
short[] arSt = new short[arBt.Length / sizeof(short)];
int[] arInt = new int[arBt.Length / sizeof(int)];
//复制为short数据;
Marshal.Copy(ptr, arSt, , arSt.Length);
//调整数据 此时arSt不变 下面的arInt改变;
Marshal.WriteByte(ptr, , );
Marshal.WriteByte(ptr, , (byte)(Marshal.ReadByte(ptr,)*));
//复制为int数据;
Marshal.Copy(ptr, arInt, , arInt.Length);
for (int i = ; i < arBt.Length; i++)
{
Console.Write(arBt[i] + "-");
}
Console.WriteLine();
for (int i = ; i < arBt.Length; i++)
{
Console.Write(Marshal.ReadByte(ptr,i) + "-");
}
Console.WriteLine();
unsafe
{ //获取指定数组中指定索引处的元素的地址
short* ps = (short*)Marshal.UnsafeAddrOfPinnedArrayElement(arSt, );
byte[] tmp0 = BitConverter.GetBytes(*ps);
Console.WriteLine(*ps+ "/" + (ushort)*ps+ ",byte>>>&0=" + tmp0[] + ",&1=" + tmp0[]);
//获取指定数组中指定索引处的元素的地址
int* pi = (int*)Marshal.UnsafeAddrOfPinnedArrayElement(arInt, );
byte[] tmp1 = BitConverter.GetBytes(*pi);
Console.WriteLine(*pi + "/" + (uint)*pi + ",byte>>>&0=" + tmp1[] + ",&1=" + tmp1[] +",&2="+ tmp1[] + ",&3=" + tmp1[]); Console.WriteLine("-----short 2 byte-----");
for (int i = ; i < arSt.Length; i++)
{
byte[] tmp = BitConverter.GetBytes(arSt[i]);
Console.WriteLine(arSt[i] + "/" + (ushort)arSt[i] + ",byte>>>&0=" + tmp[] + ",&1=" + tmp[]);
}
Console.WriteLine("-----int 2 byte-----");
for (int i = ; i < arInt.Length; i++)
{
byte[] tmp = BitConverter.GetBytes(arInt[i]);
Console.WriteLine(arInt[i] + "/" + (uint)arInt[i] + ",byte>>>&0=" + tmp[] + ",&1=" + tmp[] + ",&2=" + tmp[] + ",&3=" + tmp[]);
}
}
Marshal.FreeHGlobal(ptr);
unsafe
{
Test tt = new Test();
tt.t1 = ;
tt.t2 = true;
tt.t3 = ;
tt.t4 = ;
tt.t6 = false;
string s = "ABCD大师0X00";
char[] chs = s.ToCharArray();
char* block = stackalloc char[];
fixed (char* cpt = chs)
{
for (int i = ; i < chs.Length; i++)
{
tt.t5[i] = *(cpt + i);
block[i] = *(cpt + i);
}
Console.WriteLine(new string(tt.t5));
}
}
}
[StructLayout(LayoutKind.Sequential, Pack = )]
public unsafe struct Test
{
public byte t1;
public bool t2;
public ushort t3;
public int t4;
//固定大小的缓冲区
public fixed char t5[];
public bool t6;
}
//----------------------------------

通过上面的例子,我们可以看出,使用C#指针操作内存,非常方便。使用Marshal我们可以获得非托管内存的指针IntPtr。该指针我们可以强制转换为
sbyte、byte、short、ushort、int、uint、long、ulong、char、float、double、decimal 或 bool的类型指针。之后我们可以Copy,Read ,Write等操作内存。
同C++一样我们获得的指针可以通过指针运算符 *,->,&,++,--进行指定内存的数据和位移操作。也可以通过Marshal,将我们的byte类型数据进行类型转换操作。
Marshal类提供的转换函数功能之强大。
可参阅https://msdn.microsoft.com/zh-cn/library/system.runtime.interopservices.marshal_methods%28v=vs.80%29.aspx;
C#指针操作Marshal实例的更多相关文章
- C语言指针操作
欢迎访问我的新博客:http://www.milkcu.com/blog/ 原文地址:http://www.milkcu.com/blog/archives/pointer-manipulation. ...
- Python操作Mysql实例代码教程在线版(查询手册)_python
实例1.取得MYSQL的版本 在windows环境下安装mysql模块用于python开发 MySQL-python Windows下EXE安装文件下载 复制代码 代码如下: # -*- coding ...
- C# 指针操作相关
C# 指针操作相关 ========================================= // ** 取int 地址 以指针访问指向值 ** // ...
- 基本的window.document操作及实例
基本的window.document操作及实例 找元素 1.根据id找 var d1 = document.getElementById("d1"); alert(d1); 2.根 ...
- Selenium2学习-040-JavaScript弹出框(alert、confirm、prompt)操作演示实例
弹出框是网页自动化测试常见得操作页面元素之一,常见的JavaScript弹出框有如下三种: 1.alert(message):方法用于显示带有一条指定消息和一个 OK 按钮的警告框.DemoAlert ...
- C#开发中使用Npoi操作excel实例代码
C#开发中使用Npoi操作excel实例代码 出处:西西整理 作者:西西 日期:2012/11/16 9:35:50 [大 中 小] 评论: 0 | 我要发表看法 Npoi 是什么? 1.整个Exce ...
- Selenium2学习-014-WebUI自动化实战实例-012-Selenium 操作下拉列表实例-div+{js|jquery}
之前已经讲过了 Selenium 操作 Select 实现的下拉列表:Selenium2学习-010-WebUI自动化实战实例-008-Selenium 操作下拉列表实例-Select,但是在实际的日 ...
- Selenium2学习-010-WebUI自动化实战实例-008-Selenium 操作下拉列表实例-Select
此文主要讲述用 Java 编写 Selenium 自动化测试脚本编写过程中,对下拉列表框 Select 的操作. 下拉列表是 Web UI 自动化测试过程中使用率非常高的,通常有两种形式的下拉列表,一 ...
- Day4:T1小技巧(类似于指针操作)T2搜索+小细节
Day4:其中有很多小技巧get T1 一直没有听到过像这样的小技巧的略专业名词,有点类似于指针操作,之前有碰到过很多这样的题目 每次都是以不同的形式出现,但是感觉思想还是有点接近的吧(就比如某天有一 ...
随机推荐
- CRM创建物料FM2
这是在佛山好帮手时受启发而研究出来的,创建物料,带单位,类型组 经测试....算了,不说了,有什么限制自己测去...今天心情不好... FUNCTION ZLY_CREATE_PRODUCT_UNIT ...
- [转]玩转Google开源C++单元测试框架Google Test系列
gtest的官方网站是: http://code.google.com/p/googletest/ 从官方的使用文档里,你几乎可以获得你想要的所有东西 http://code.google.com/p ...
- 解决ACTIVITI流程图设置字体不生效的问题
在ACTIVITI 5.15的版本中,有一个设置流程图的字体配置. 配置如下: <bean id="processEngineConfiguration" class=&qu ...
- oracle查询语句大全
1.查处oracle数据库的字符编码格式 select * from v$nls_parameters t where t.PARAMETER='NLS_CHARACTERSET'; 如果查出的是ZH ...
- js基础之ajax
必须搞懂的几个问题: 1.如何创建ajax对象? 2.如何连接服务器? 3.如何发送请求? 4.监控请求状态的事件是什么?分几个阶段?如何获取返回值? 答:onreadystatechange事件:一 ...
- bzoj 2037: [Sdoi2008]Sue的小球
#include<cstdio> #include<iostream> #include<algorithm> using namespace std; struc ...
- POJ 1328 Radar Installation 贪心 难度:1
http://poj.org/problem?id=1328 思路: 1.肯定y大于d的情况下答案为-1,其他时候必定有非负整数解 2.x,y同时考虑是较为麻烦的,想办法消掉y,用d^2-y^2获得圆 ...
- 【HDU2087】KMP
KMP算法其实很好理解,就是在匹配串中找最近的相同的串. 下面是HDU的2087: #include<iostream> #include<cstdio> #include&l ...
- MonoRail MVC应用(2)-构建多层结构的应用程序
习惯了分层结构的.NET开发了,当然也是分层有优势,所以在使用MonoRail进行网站构建时,首先考虑到的问题就是MonoRail如何应对分层的结构.问题1:MonoRail在WEB层没有根目录,必须 ...
- CodeForces 534D Program B
Description On February, 30th n students came in the Center for Training Olympiad Programmers (CTOP) ...