Gewusst wie: Verwenden von Zeigern zum Kopieren eines Bytearrays (C#-Programmierhandbuch)

Aktualisiert: November 2007

Im folgenden Beispiel werden Zeiger für das Kopieren von Bytes von einem Array in ein anderes verwendet.

In diesem Beispiel wird das unsafe-Schlüsselwort verwendet, das die Verwendung von Zeigern in der Copy-Methode ermöglicht. Die fixed-Anweisung wird zur Deklarierung von Zeigern auf das Quellarray und das Zielarray verwendet. Dadurch wird die Position von Quell- und Zielarray im Speicher fixiert, sodass diese von der Garbage Collection nicht verschoben werden. Die Fixierung der Speicherblöcke wird aufgehoben, wenn der fixed-Block abgeschlossen wird. Da die Copy-Funktion in diesem Beispiel das unsafe-Schlüsselwort verwendet, muss beim Kompilieren die Option /unsafe verwendet werden.

Beispiel

// 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        
*/

Siehe auch

Aufgaben

Beispiel für unsicheren Code

Konzepte

C#-Programmierhandbuch

Referenz

Unsicherer Code und Zeiger (C#-Programmierhandbuch)

/unsafe (Unsicheren Modus aktivieren) (C#-Compileroptionen)

Weitere Ressourcen

Garbage Collection