initonly (C++/CLI)

initonly 是一个上下文相关的关键字,表示变量赋值只能作为声明的一部分或在同一类的静态构造函数中发生。

下面的示例演示如何使用 initionly

// mcpp_initonly.cpp
// compile with: /clr /c
ref struct Y1 {
   initonly
   static int staticConst1;

   initonly
   static int staticConst2 = 0;

   static Y1() {
      staticConst1 = 0;
   }
};

另请参阅

类和结构