您好,登錄后才能下訂單哦!
本篇內容主要講解“c#處理char**和int**的方法”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“c#處理char**和int**的方法”吧!
void pptrtest(char** ppstr, int** ppi)
{
int len = **ppi; //c#中有幾個string
for (int i = 0; i < len; i++)
{
if (*ppstr != NULL)
{
*ppstr[0] += 1;
}
else
{
return;
}
*ppstr++;
}
return;
}
[DllImport("dllfordebugdemo.dll", EntryPoint = "pptrtest", CallingConvention = CallingConvention.Cdecl)]
public static extern void pptrtest(IntPtr[] ppstr, IntPtr len);
實驗代碼:
string[] msgs = { "zs", "li", "wu" };
len = 3;
IntPtr ptrlen = Marshal.AllocHGlobal(sizeof(int));
Marshal.Copy(BitConverter.GetBytes(len), 0, ptrlen, BitConverter.GetBytes(len).Length);
IntPtr pptrlen = Marshal.AllocHGlobal(Marshal.SizeOf(ptrlen));
Marshal.Copy(BitConverter.GetBytes(ptrlen.ToInt64()), 0, pptrlen, BitConverter.GetBytes(ptrlen.ToInt64()).Length);
IntPtr pmsgs0 = Marshal.StringToHGlobalAuto(msgs[0]);
IntPtr pmsgs1 = Marshal.StringToHGlobalAuto(msgs[1]);
IntPtr pmsgs2 = Marshal.StringToHGlobalAuto(msgs[2]);
//IntPtr pmsgs = Marshal.AllocHGlobal(Marshal.SizeOf(pmsgs0) * msgs.Length);
IntPtr[] pmsgs = new IntPtr[3];
pmsgs[0] = pmsgs0; pmsgs[1] = pmsgs1; pmsgs[2] = pmsgs2;
pptrtest(pmsgs, pptrlen);
Console.WriteLine(Marshal.PtrToStringAuto(pmsgs0));
Console.WriteLine(Marshal.PtrToStringAuto(pmsgs1));
Console.WriteLine(Marshal.PtrToStringAuto(pmsgs2));
Marshal.FreeHGlobal(pmsgs0); Marshal.FreeHGlobal(pmsgs1); Marshal.FreeHGlobal(pmsgs2);
Marshal.FreeHGlobal(pptrlen); //前面代碼都實驗OK,到此出現:觸發一個斷點,其原因可能是堆被損壞,說明本exe中或它所加載的任何DLL中有BUG,原因也可能是用戶在本exe程序具有焦點時按下了F12。
Marshal.FreeHGlobal(ptrlen);
將實驗代碼換成如下:
public static extern void pptrtest(IntPtr[] ppstr, ref int[] len);
int[] arrlen = new int[1];
arrlen[0] = 3;
pptrtest(pmsgs, ref arrlen);
則一切實驗都正常。
由此可以知道:c++中參數是char**,int**,則c#中應該用ref IntPtR[]和ref int[]。
到此,相信大家對“c#處理char**和int**的方法”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。