IntPtr.Addition(IntPtr, Int32) Operatore

Definizione

Aggiunge un offset a un intero con segno.

public:
 static IntPtr operator +(IntPtr pointer, int offset);
public static IntPtr operator + (IntPtr pointer, int offset);
static member ( + ) : nativeint * int -> nativeint
Public Shared Operator + (pointer As IntPtr, offset As Integer) As IntPtr

Parametri

pointer
IntPtr

nativeint

Intero con segno a cui aggiungere l'offset.

offset
Int32

Offset da aggiungere.

Restituisce

IntPtr

nativeint

Nuovo intero con segno che riflette l'aggiunta di offset a pointer.

Commenti

Il Addition metodo definisce l'operazione di addizione per IntPtr gli oggetti . Abilita codice come il seguente.

int[] arr = {2, 4, 6, 8, 10, 12, 14, 16, 18, 20 };
unsafe {
   fixed(int* parr = arr)
   {
       IntPtr ptr = new IntPtr(parr);
       for (int ctr = 0; ctr < arr.Length; ctr++)
       {
          IntPtr newPtr = ptr + ctr * sizeof(Int32);
          Console.Write("{0}   ", Marshal.ReadInt32(newPtr));
       }
   }
}
// The example displays the following output:
//       2   4   6   8   10   12   14   16   18   20
#nowarn "9"
open System.Runtime.InteropServices
open FSharp.NativeInterop

[<EntryPoint>]
let main _ =
    let arr =
        [| 2; 4; 6; 8; 10; 12; 14; 16; 18; 20 |]
        
    use parr = fixed arr

    let ptr = NativePtr.toNativeInt parr

    for i = 0 to arr.Length - 1 do
        let newPtr = ptr + nativeint i * nativeint sizeof<int>
        printf $"{Marshal.ReadInt32 newPtr}   "
    0

    // The example displays the following output:
    //       2   4   6   8   10   12   14   16   18   20
Dim arr() As Integer = {2, 4, 6, 8, 10, 12, 14, 16, 18, 20 }
Dim ptr As IntPtr = Marshal.UnsafeAddrOfPinnedArrayElement(arr, 0)
For ctr As Integer = 0 To arr.Length - 1
   Dim newPtr As IntPtr = ptr + ctr * Len(arr(0))
   Console.WriteLine("{0}   ", Marshal.ReadInt32(newPtr))
Next
' The example displays the following output:
'       2   4   6   8   10   12   14   16   18   20

Le lingue che non supportano operatori personalizzati possono invece chiamare il Add metodo .

L'operazione di addizione non genera un'eccezione se il risultato è troppo grande per rappresentare come intero con segno nel processo in esecuzione. Viene invece eseguita in un contesto deselezionato.

In C# a partire dalla versione 11 e quando la destinazione è il runtime .NET 7 o versione successiva, questa API è accessibile solo tramite reflection. L'operatore di addizione viene riconosciuto direttamente dalla lingua e seguirà il comportamento normale del linguaggio per le operazioni di addizione, incluso l'overflow in un checked contesto se il risultato è troppo grande da rappresentare.

Il metodo equivalente per questo operatore è IntPtr.Add(IntPtr, Int32)

Si applica a

Vedi anche