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;
   }
};

请参见

参考

类和结构 (托管)