Sdílet prostřednictvím


Compilerfehler CS0559

Aktualisiert: November 2007

Fehlermeldung

Der Parametertyp für den Operator "++" oder "--" muss der enthaltende Typ sein
The parameter type for ++ or -- operator must be the containing type

Bei der Methodendeklaration für die Überladung eines Operators müssen bestimmte Richtlinien beachtet werden. Für die Operatoren ++ und -- ist es notwendig, das die Parameter vom gleichen Typ sind wie der Typ, in dem der Operator überladen wird.

Beispiel

Im folgenden Beispiel wird CS0559 generiert:

// CS0559.cs
// compile with: /target:library
public class iii
{
   public static implicit operator int(iii x)
   {
      return 0;
   }

   public static implicit operator iii(int x)
   {
      return null;
   }

   public static int operator ++(int aa)   // CS0559
   // try the following line instead
   // public static iii operator ++(iii aa)
   {
      return (iii)0;
   }
}

Im folgenden Beispiel wird CS0559 generiert:

// CS0559_b.cs
// compile with: /target:library
public struct S
{
   public static S operator ++(S? s) { return new S(); }   // CS0559
   public static S operator --(S? s) { return new S(); }   // CS0559
}

public struct T
{
// OK
   public static T operator --(T t) { return new T(); }
   public static T operator ++(T t) { return new T(); }

   public static T? operator --(T? t) { return new T(); }
   public static T? operator ++(T? t) { return new T(); }
}