IntPtr.Zero Pole

Definicja

Pole tylko do odczytu, które reprezentuje podpisaną liczbę całkowitą, która została zainicjowana do zera.

public static readonly IntPtr Zero;

Wartość pola

IntPtr

Uwagi

Wartość tego pola nie jest równoważna nullwartościom . Użyj tego pola, aby efektywnie określić, czy wystąpienie obiektu IntPtr zostało ustawione na wartość inną niż zero.

Załóżmy na przykład, że zmienna ip jest wystąpieniem IntPtr. Możesz określić, czy została ustawiona, porównując ją z wartością zwracaną przez konstruktor, na przykład: " if ip != new IntPtr(0)... ". Jednak wywoływanie konstruktora w celu uzyskania niezainicjowanego wskaźnika jest nieefektywne. Lepiej jest kodować " if ip != IntPtr.Zero... , lub " if !IntPtr.Zero.Equals(ip)... ".

Podczas wywoływania interfejsu API systemu Windows z kodu zarządzanego można przekazać IntPtr.Zero zamiast null argumentu, jeśli argument ma być wskaźnikiem lub .null Na przykład następujące wywołanie funkcji systemu Windows CreateFile dostarcza IntPtr.Zero wartości argumentów pSecurityAttributes i hTemplateFile .

using Microsoft.Win32.SafeHandles;
using System;
using System.Runtime.InteropServices;

public class Example
{
   private const uint GENERIC_READ = 0x80000000;
   private const uint OPEN_EXISTING = 3;
   private const uint FILE_ATTRIBUTE_NORMAL = 128;
   private const uint FILE_FLAG_OVERLAPPED = 0x40000000;

   [DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
   private static extern Microsoft.Win32.SafeHandles.SafeFileHandle CreateFile(
            string lpFileName, System.UInt32 dwDesiredAccess, System.UInt32 dwShareMode,
            IntPtr pSecurityAttributes, System.UInt32 dwCreationDisposition,
            System.UInt32 dwFlagsAndAttributes, IntPtr hTemplateFile);

   public static void Main()
   {
      SafeFileHandle hnd = CreateFile("CallOfTheWild.txt", GENERIC_READ, 0,
                                      IntPtr.Zero, OPEN_EXISTING,
                                      FILE_ATTRIBUTE_NORMAL | FILE_FLAG_OVERLAPPED,
                                      IntPtr.Zero);
      if (hnd.IsInvalid) {
            Exception ex = Marshal.GetExceptionForHR(Marshal.GetHRForLastWin32Error());
            Console.WriteLine("Attempt to open file failed:");
            Console.WriteLine("  {0}", ex.Message);
            return;
      }
      else {
         Console.WriteLine("File successfully opened.");
         hnd.Close();
      }
   }
}
// If the file cannot be found, the example displays the following output:
//    Attempt to open file failed:
//      The system cannot find the file specified. (Exception from HRESULT: 0x80070002)

Uwaga

Chociaż Zero jest odpowiednikiem null dla funkcji interfejsu API systemu Windows z parametrami lub zwracanymi wartościami, które mogą być wskaźnikami lub null, Zero nie są równoważne null. Przekazywanie null do IntPtr.Zero.Equals metody zawsze zwraca wartość false.

Możesz również przetestować wartość zwracaną null z wywołań funkcji interfejsu API systemu Windows, które zwracają wskaźnik lub wartość null zwracaną przez porównanie zwróconej wartości z wartością IntPtr.Zero. Na przykład wywołanie GetWindow funkcji w poniższym przykładzie próbuje pobrać uchwyt nieistniejącego okna. Jeśli została wywołana z niezarządzanego kodu, funkcja zwróci nullwartość , ale gdy jest wywoływana z kodu zarządzanego, zwraca wartość IntPtr.Zero.

using System;
using System.Runtime.InteropServices;

public class Example
{
   private const int GW_OWNER = 4;

   [DllImport("user32", CharSet=CharSet.Auto, SetLastError=true, ExactSpelling=true)]
   public static extern IntPtr GetWindow(IntPtr hwnd, int wFlag);

   public static void Main()
   {
      IntPtr hwnd = new IntPtr(3);
      IntPtr hOwner = GetWindow(hwnd, GW_OWNER);
      if (hOwner == IntPtr.Zero)
         Console.WriteLine("Window not found.");
   }
}
// The example displays the following output:
//        Window not found.

Dotyczy

Produkt Wersje
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.0, 2.1
UWP 10.0