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