次の方法で共有


方法 : ポインタを使用してバイトの配列をコピーする (C# プログラミング ガイド)

更新 : 2007 年 11 月

次の例では、ポインタを使用して配列間でバイトをコピーします。

この例では、unsafe キーワードを使用して、Copy メソッド内でポインタを使用できるようにしています。fixed ステートメントを使用して、コピー元とコピー先の配列へのポインタを宣言します。これで、ガベージ コレクションによって移動されないように、メモリ内でコピー元とコピー先の位置が固定されます。fixed ブロックが完了すると、これらのメモリ ブロックの固定が解除されます。この例では、Copy 関数に unsafe キーワードを使用しているため、/unsafe コンパイラ オプションを指定してコンパイルする必要があります。

使用例

// compile with: /unsafe
class TestCopy
{
    // The unsafe keyword allows pointers to be used within the following method:
    static unsafe void Copy(byte[] src, int srcIndex, byte[] dst, int dstIndex, int count)
    {
        if (src == null || srcIndex < 0 ||
            dst == null || dstIndex < 0 || count < 0)
        {
            throw new System.ArgumentException();
        }

        int srcLen = src.Length;
        int dstLen = dst.Length;
        if (srcLen - srcIndex < count || dstLen - dstIndex < count)
        {
            throw new System.ArgumentException();
        }

        // The following fixed statement pins the location of the src and dst objects
        // in memory so that they will not be moved by garbage collection.
        fixed (byte* pSrc = src, pDst = dst)
        {
            byte* ps = pSrc;
            byte* pd = pDst;

            // Loop over the count in blocks of 4 bytes, copying an integer (4 bytes) at a time:
            for (int i = 0 ; i < count / 4 ; i++)
            {
                *((int*)pd) = *((int*)ps);
                pd += 4;
                ps += 4;
            }

            // Complete the copy by moving any bytes that weren't moved in blocks of 4:
            for (int i = 0; i < count % 4 ; i++)
            {
                *pd = *ps;
                pd++;
                ps++;
            }
        }
    }

    static void Main()
    {
        byte[] a = new byte[100];
        byte[] b = new byte[100];

        for (int i = 0; i < 100; ++i)
        {
            a[i] = (byte)i;
        }

        Copy(a, 0, b, 0, 100);
        System.Console.WriteLine("The first 10 elements are:");

        for (int i = 0; i < 10; ++i) 
        {
            System.Console.Write(b[i] + " ");
        }
        System.Console.WriteLine("\n");
    }
}
/* Output:
    The first 10 elements are:
    0 1 2 3 4 5 6 7 8 9        
*/

参照

処理手順

アンセーフ コードのサンプル

概念

C# プログラミング ガイド

参照

unsafe コードとポインタ (C# プログラミング ガイド)

/unsafe (unsafe モードの有効化) (C# コンパイラ オプション)

その他の技術情報

ガベージ コレクション