視內容而有所區別的關鍵字 (C++ 元件擴充功能)
「內容相關性關鍵字」(Context-Sensitive Keyword) 是在特定內容中才會辨識的語言項目。 在特定內容之外,內容相關性關鍵字可以是使用者定義的符號。
所有執行階段
備註
下列是內容相關性關鍵字清單:
internal (請參閱成員的可視性)
where (泛型 (C++ 元件擴充功能)的一部分)
基於可讀性目的,您可能需要限制內容相關性關鍵字做為使用者定義符號的使用。
Windows 執行階段
備註
(沒有這項功能的平台特定備註。)
需求
編譯器選項:/ZW
Common Language Runtime
備註
(沒有這項功能的平台特定備註。)
需求
編譯器選項:/clr
範例
範例
下列程式碼範例會示範,在適當的內容中,property 內容相關性關鍵字可用來定義屬性和變數。
// context_sensitive_keywords.cpp
// compile with: /clr
public ref class C {
int MyInt;
public:
C() : MyInt(99) {}
property int Property_Block { // context-sensitive keyword
int get() { return MyInt; }
}
};
int main() {
int property = 0; // variable name
C ^ MyC = gcnew C();
property = MyC->Property_Block;
System::Console::WriteLine(++property);
}
輸出