如何:定义接口静态构造函数 (C++/CLI)

接口可具有一个静态构造函数,其可用于初始化静态数据成员。 一个静态构造函数最多调用一次,并且将在首次访问静态接口成员之前调用。

示例

// mcppv2_interface_class2.cpp
// compile with: /clr
using namespace System;

interface struct MyInterface {
   static int i;
   static void Test() {
      Console::WriteLine(i);
   }

   static MyInterface() {
      Console::WriteLine("in MyInterface static constructor");
      i = 99;
   }
};

ref class MyClass : public MyInterface {};

int main() {
   MyInterface::Test();
   MyClass::MyInterface::Test();

   MyInterface ^ mi = gcnew MyClass;
   mi->Test();
}
in MyInterface static constructor
99
99
99

另请参阅

接口类