initonly (C++/CLI)
initonly ist ein kontextabhängiges Schlüsselwort, das angibt, dass variable Zuordnung nur als Teil der Deklaration oder in einem statischen Konstruktor in derselben Klasse auftreten kann.
Das folgende Beispiel zeigt die Verwendung von initionly
:
// mcpp_initonly.cpp
// compile with: /clr /c
ref struct Y1 {
initonly
static int staticConst1;
initonly
static int staticConst2 = 0;
static Y1() {
staticConst1 = 0;
}
};