如何:定義介面靜態建構函式 (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