C#中IntPtr类型的具体使用
程序员文章站
2022-06-03 23:53:47
什么是intptr先来看看msdn上说的:用于表示指针或句柄的平台特定类型。这个其实说出了这样两个事实,intptr 可以用来表示指针或句柄、它是一个平台特定类型。c#中的intptr类型称为&ldq...
什么是intptr
先来看看msdn上说的:用于表示指针或句柄的平台特定类型。这个其实说出了这样两个事实,intptr 可以用来表示指针或句柄、它是一个平台特定类型。
c#中的intptr类型称为“平台特定的整数类型”,它们用于本机资源,如窗口句柄。资源的大小取决于使用的硬件和操作系统,但其大小总是足以包含系统的指针(因此也可以包含资源的名称)。
所以,在您调用的api函数中一定有类似窗体句柄这样的参数,那么当您声明这个函数时,您应该将它显式地声明为intptr类型。
例如,在一个c#程序中调用win32api mcisendstring函数控制光盘驱动器,这个函数的函数原型是:
mcierror mcisendstring( lpctstr lpszcommand, lptstr lpszreturnstring, uint cchreturn, handle hwndcallback );
首先在c#中声明这个函数:
[dllimport("winmm.dll")] private static extern long mcisendstring(string a,string b,uint c,intptr d);
然后用这样的方法调用:
mcisendstring("set cdaudio door open", null, 0, this.handle);
您也可以使用intptr.zero将句柄设置为0;
或者使用类型强制转换:
mcisendstring("set cdaudio door open", null, 0, (intptr)0 );
或者,使用intptr构造函数:
intptr a = new intptr(2121);
1.c#中的intptr类型被称之为“平台特定的整数类型”,用于本机资源,例如窗口句柄。
2.资源的大小取决于使用的硬件和操作系统,即此类型的实例在32位硬件和操作系统中将是32位,在64位硬件和操作系统中将是64位;但其大小总是足以包含系统的指针(因此也可以包含资源的名称)。
3.在调用api函数时,类似含有窗口句柄参数(handle)的原型函数,应显示地声明为intptr类型。
4.intptr类型对多线程操作是安全的。
5. int 和intptr互转
int i=1; intptr p=new intptr(i); int ch_i=(int) p;
6. intptr和string互转
string str="a"; intptr p=marshal.stringtohglobalansi(str); string s=marshal.ptrtostringansi(p); marshal.freehglobal(p);
到此这篇关于c#中intptr类型的具体使用的文章就介绍到这了,更多相关c# intptr类型内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: C#多线程系列之资源池限制