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 一直没有听到过像这样的小技巧的略专业名词,有点类似于指针操作,之前有碰到过很多这样的题目 每次都是以不同的形式出现,但是感觉思想还是有点接近的吧(就比如某天有一 ...
随机推荐
- jQuery性能优化指南(转载)
现在jquery应用的越来越多, 有些同学在享受爽快淋漓coding时就将性能问题忽略了, 比如我. jquery虽在诸多的js类库中性能表现还算优秀, 但毕竟不是在用原生的javascript开发, ...
- 生JS实现jQuery的ready方法呢?下面是其中之一的做法:
function ready(fn){ if(document.addEventListener){ //标准浏览器 document.addEventListener('DOMConten ...
- mysql 索引长度限制
MyISAM存储引擎引键的长度综合不能超过1000字节 InnoDB单列索引长度不能超过767bytes,联合索引还有一个限制是3072
- Linux CC攻击脚本
CC(ChallengeCollapsar)主要是用来攻击页面的.大家都有这样的经历,就是在访问论坛时,如果这个论坛比较大,访问的人比较多,打开页面的速度会比较慢,访问的人越多,论坛的页面越多,数据库 ...
- [转载]Matrix类的使用
2013-12-18 11:31:00 转载自: http://www.cnblogs.com/mmy0925/archive/2013/01/22/2871009.html 在Android中,对图 ...
- 用Qt实现简单的视频播放器
ui 在.pro文件中添加 QT +=phonon 头文件 #ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QMainWindow> ...
- KING小组
KING——学习小组 小组成员及github地址&博客地址: 张静 https://github.com/loiskris/test.git http://www.cnblogs.com/l ...
- Microsoft Mole原理及常见问题整理
Moles与Moq(Rhino.Mocks)比较 作用范围 Moq与Rhino.Mocks这类的Mock是对Interface或AbstractClass做Mock, 而Moles是Mock整个 ...
- Hibernate对象映射类型
Hibernate understands both the Java and JDBC representations of application data. The ability to rea ...
- CodeForces 468A Program F
Description Little X used to play a card game called "24 Game", but recently he has found ...