IntPtr.Addition(IntPtr, Int32) 演算子

定義

符号付き整数にオフセットを追加します。

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

パラメーター

pointer
IntPtr

nativeint

オフセットを追加する符号付き整数。

offset
Int32

加算するオフセット。

戻り値

IntPtr

nativeint

の加算offsetpointerを反映する新しい符号付き整数。

注釈

このメソッドは Addition 、オブジェクトの加算操作を IntPtr 定義します。 これにより、次のようなコードが有効になります。

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

カスタム演算子をサポートしていない言語では、代わりにメソッドを Add 呼び出すことができます。

加算操作では、結果が大きすぎて実行中のプロセスで符号付き整数として表現できない場合、例外はスローされません。 代わりに、オフのコンテキストで実行されます。

バージョン 11 以降の C# では、.NET 7 以降のランタイムを対象とする場合、この API にはリフレクション経由でのみアクセスできます。 加算演算子は言語によって直接認識され、結果が大きすぎて表すにはコンテキスト内で checked オーバーフローするなど、追加操作の通常の言語動作に従います。

この演算子の同等のメソッドは次のようになります。 IntPtr.Add(IntPtr, Int32)

適用対象

こちらもご覧ください