Postupy: Definice a používání statického konstruktoru (C++/CLI)
Rozhraní může mít statický konstruktor, který umožňuje inicializovat statické datové členy. Statický konstruktor se nazývá maximálně jednou a bude volána před prvním členem statické rozhraní pracuje.
Další informace o statické konstruktory, viz Postup: definování v třídě nebo struktuře statické konstruktory.
Příklad
// 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();
}