視內容而有所區別的關鍵字 (C++ 元件擴充功能)
即時線上關鍵字是只在特定情況會辨識的語言項目。 特定的內容,外部內容感應式關鍵字可以是使用者定義的符號。
所有的執行階段
備註
即時線上的關鍵字清單如下:
internal(see 成員的可視性)
where(part of 泛型 (C++ 元件擴充功能))
為了可讀性,您可以限制您使用即時線上關鍵字為 user–defined 的符號。
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);
}
Output