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