Baca dalam bahasa Inggris

Bagikan melalui


Compiler Error CS0559

Jenis parameter untuk operator ++ atau -- harus berupa jenis penampung

Deklarasi metode untuk kelebihan beban operator harus mengikuti pedoman tertentu. Untuk operator ++ dan --, diharuskan bagi parameter untuk memiliki jenis yang sama dengan jenis tempat operator kelebihan beban.

Contoh 1

Sampel berikut menghasilkan 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;  
   }  
}  

Contoh 2

Sampel berikut menghasilkan 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(); }  
}