閱讀英文

共用方式為


編譯器錯誤 CS0559

++ 或 -- 運算子的參數類型必須是包含類型

運算子多載的方法宣告必須遵循特定的指導方針。 對於 ++ 和 -- 運算子,參數的類型需要與多載運算子的類型相同。

範例 1

下列範例會產生 CS0559:

C#
// 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;  
   }  
}  

範例 2

下列範例會產生 CS0559。

C#
// 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(); }  
}