Sdílet prostřednictvím


Postupy: Definice a používání statického konstruktoru (C++/CLI)

Rozhraní může mít statický konstruktor, který lze použít k inicializaci statických datových členů. Statický konstruktor bude volána najednou a bude volána před prvním přístupem člena statického rozhraní.

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();
}
in MyInterface static constructor
99
99
99

Viz také

interface class