溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

c#處理char**和int**的方法

發(fā)布時(shí)間:2021-07-09 09:30:06 來源:億速云 閱讀:174 作者:chen 欄目:編程語言

本篇內(nèi)容主要講解“c#處理char**和int**的方法”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“c#處理char**和int**的方法”吧!

void pptrtest(char** ppstr, int** ppi)
{
    int len = **ppi; //c#中有幾個(gè)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);
實(shí)驗(yàn)代碼:
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); //前面代碼都實(shí)驗(yàn)OK,到此出現(xiàn):觸發(fā)一個(gè)斷點(diǎn),其原因可能是堆被損壞,說明本exe中或它所加載的任何DLL中有BUG,原因也可能是用戶在本exe程序具有焦點(diǎn)時(shí)按下了F12。
            Marshal.FreeHGlobal(ptrlen);

將實(shí)驗(yàn)代碼換成如下:

public static extern void pptrtest(IntPtr[] ppstr, ref int[] len);

 int[] arrlen = new int[1];
 arrlen[0] = 3;

pptrtest(pmsgs, ref arrlen);

則一切實(shí)驗(yàn)都正常。

由此可以知道:c++中參數(shù)是char**,int**,則c#中應(yīng)該用ref IntPtR[]和ref int[]。

到此,相信大家對(duì)“c#處理char**和int**的方法”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI