Aracılığıyla paylaş


Derleyici Hatası C3264

'class' : sınıf oluşturucu bir dönüş türüne sahip olamaz

Açıklamalar

Sınıf oluşturucuları dönüş türlerine sahip olamaz.

Example

Aşağıdaki örnek C3264 oluşturur:

// C3264_2.cpp
// compile with: /clr

ref class X {
   public:
      static int X()   { // C3264
      }

      /* use the code below to resolve the error
      static X() {
      }
      */
};
int main() {
}