久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

C#調(diào)用C/C++動(dòng)態(tài)庫,,封裝各種復(fù)雜結(jié)構(gòu)體,。

 Runs丶SS11 2015-12-11

    現(xiàn)在公司要做一個(gè)使用C#程序調(diào)用C++的一個(gè)DLL庫,。所以在網(wǎng)上找了一些資料,。

    一,、結(jié)構(gòu)體傳遞

  1. #define JNAAPI extern "C" __declspec(dllexport) // C方式導(dǎo)出函數(shù)  
  2.   
  3. typedef struct      
  4. {    
  5.     int osVersion;    
  6.     int majorVersion;    
  7.     int minorVersion;    
  8.     int buildNum;    
  9.     int platFormId;    
  10.     char szVersion[128];    
  11. }OSINFO;    
  12.   
  13. // 1. 獲取版本信息(傳遞結(jié)構(gòu)體指針)    
  14. JNAAPI bool GetVersionPtr( OSINFO *info );    
  15. // 2.獲取版本信息(傳遞結(jié)構(gòu)體引用)    
  16. JNAAPI bool GetVersionRef(OSINFO &info);    

可以通過二種方式進(jìn)行調(diào)用:
  1. // OSINFO定義  
  2. [StructLayout(LayoutKind.Sequential)]  
  3. public struct OSINFO  
  4. {  
  5.     public int osVersion;  
  6.     public int majorVersion;  
  7.     public int minorVersion;  
  8.     public int buildNum;  
  9.     public int platFormId;  
  10.     [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 128)]  
  11.     public string szVersion;  
  12. }  

1. 方式一(傳入結(jié)構(gòu)體引用),在C#中,結(jié)構(gòu)體是以傳值方式傳遞,類才是以傳地址方式傳遞,加關(guān)鍵字ref即可. C端傳遞了兩種不同類型的參數(shù),都可以通過引用來解決.

  1. [DllImport("jnalib.dll", EntryPoint = "GetVersionPtr")]  
  2. public static extern bool GetVersionPtr(ref OSINFO info);  
  3. public static extern bool GetVersionRef(ref OSINFO info);  

2. 方式二(傳入IntPtr(平臺(tái)通用指針))

  1. IntPtr pv = Marshal.AllocHGlobal(148); //結(jié)構(gòu)體在使用時(shí)一定要分配空間(4*sizeof(int)+128)  
  2. Marshal.WriteInt32(pv,148); //向內(nèi)存塊里寫入數(shù)值  
  3. if (GetVersionPtr(pv)) //直接以非托管內(nèi)存塊地址為參數(shù)  
  4. {  
  5.     Console.WriteLine("--osVersion:{0}", Marshal.ReadInt32(pv, 0));  
  6.     Console.WriteLine("--Major:{0}",Marshal.ReadInt32(pv, 4)); //移動(dòng)4個(gè)字節(jié)  
  7.     Console.WriteLine("--BuildNum: " + Marshal.ReadInt32(pv, 12));  
  8.     Console.WriteLine("--szVersion: "+Marshal.PtrToStringAnsi((IntPtr)(pv.ToInt32()+20)));  
  9. }  
  10. Marshal.FreeHGlobal(pv); //處理完記得釋放內(nèi)存  

 二.結(jié)構(gòu)體數(shù)組的傳遞
  1. // 傳遞結(jié)構(gòu)體指針  
  2. JNAAPI bool GetVersionArray(OSINFO *info,int nLen);  

調(diào)用:
  1. /** 
  2.  * C#接口,對(duì)于包含數(shù)組類型,只能傳遞IntPtr 
  3.  */   
  4. [DllImport("jnalib.dll", EntryPoint = "GetVersionArray")]  
  5. public static extern bool GetVersionArray(IntPtr p, int nLen);    
  6.   
  7. // 源目標(biāo)參數(shù)  
  8. OSINFO[] infos = new OSINFO[2];  
  9. for (int i = 0; i < infos.Length; i++)  
  10. {  
  11.     infos[i] = new OSINFO();  
  12. }  
  13.   
  14. IntPtr[] ptArr = new IntPtr[1];  
  15. ptArr[0] = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(OSINFO)) * 2); //分配包含兩個(gè)元素的數(shù)組  
  16. IntPtr pt = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(OSINFO)));   
  17. Marshal.Copy(ptArr, 0, pt, 1); //拷貝指針數(shù)組  
  18. GetVersionArray(pt, 2); //調(diào)用  
  19.   
  20. //還原成結(jié)構(gòu)體數(shù)組  
  21. for (int i = 0; i < 2; i++)    
  22. {  
  23.     infos[i]=(OSINFO)Marshal.PtrToStructure((IntPtr)(pt.ToInt32()+i*Marshal.SizeOf(typeof(OSINFO))),typeof(OSINFO));  
  24.     Console.WriteLine("OsVersion:{0} szVersion:{1}", infos[i].osVersion, infos[i].szVersion);  
  25. }  

三. 復(fù)雜結(jié)構(gòu)體的傳遞

 1. 輸出參數(shù),結(jié)構(gòu)體作為指針傳出

  1. typedef struct  
  2. {  
  3.     char name[20];  
  4.     int age;  
  5.     double scores[30];  
  6. }Student;  
  7.   
  8. // Class中包含結(jié)構(gòu)體數(shù)組類型  
  9. typedef struct  
  10. {  
  11.     int number;  
  12.     Student students[50];  
  13. }Class;  
  14.   
  15. // 傳入復(fù)雜結(jié)構(gòu)體測(cè)試  
  16. JNAAPI int GetClass(Class *pClass,int len);  

  1. // 接口定義   
  2. [DllImport("jnalib.dll", EntryPoint = "GetClass")]  
  3. public static extern int GetClass(IntPtr pv,int len);  
  4.   
  5. // 結(jié)構(gòu)體定義  
  6. // Student  
  7. [StructLayout(LayoutKind.Sequential)]  
  8. public struct Student  
  9. {  
  10.     [MarshalAs(UnmanagedType.ByValTStr,SizeConst=20)]  
  11.     public string name;  
  12.     public int age;  
  13.     [MarshalAs(UnmanagedType.ByValArray, SizeConst = 30)]  
  14.     public double[] scores;  
  15. }  
  16.   
  17. // Class  
  18. [StructLayout(LayoutKind.Sequential)]  
  19. public struct Class  
  20. {  
  21.     public int number;  
  22.     [MarshalAs(UnmanagedType.ByValArray, SizeConst = 50)] // 指定數(shù)組尺寸   
  23.     public Student[] students; // 結(jié)構(gòu)體數(shù)組定義  
  24. }  
  25.   
  26. // 調(diào)用復(fù)雜結(jié)構(gòu)體測(cè)試  
  27. int size = Marshal.SizeOf(typeof(Class)) * 50;  
  28. IntPtr pBuff = Marshal.AllocHGlobal(size); // 直接分配50個(gè)元素的空間,比Marshal.copy方便多了  
  29. GetClass(pBuff, 50);  
  30.   
  31. Class[] pClass = new Class[50];  
  32. for (int i = 0; i < 50; i++)  
  33. {  
  34.     IntPtr ptr = new IntPtr(pBuff.ToInt64() + Marshal.SizeOf(typeof(Class)) * i);  
  35.     pClass[i] = (Class)Marshal.PtrToStructure(ptr, typeof(Class));  
  36. }  
  37. Marshal.FreeHGlobal(pBuff); // 釋放內(nèi)存  

2. 輸入?yún)?shù), 給復(fù)雜結(jié)構(gòu)體賦值后作為輸入?yún)?shù)傳入

   對(duì)于比較大的結(jié)構(gòu)體指針,無法直接應(yīng)用結(jié)構(gòu)體類型,轉(zhuǎn)化成IntPtr類型, 此時(shí)需要將原生類型轉(zhuǎn)化為指針,并給指針賦值

   調(diào)用方法: Marshal.StructureToPtr(stu, ptr1, true) 

end...

轉(zhuǎn)自:http://tcspecial./blog/1675309

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購買等信息,,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請(qǐng)點(diǎn)擊一鍵舉報(bào),。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多