编译器错误 C3264

“class”: Class 构造函数不能有返回类型

Class 构造函数不能有返回类型。

下面的示例生成 C3264:

// 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() {
}