switch_type
識別做為等位辨識項的變數類型。
語法
[switch_type(
type
}]
參數
type
參數類型可以是整數、字元、布爾值或列舉類型。
備註
switch_type C++ 屬性的功能與 switch_type MIDL 屬性相同。
C++屬性不支援 封裝聯集。 只有下列格式才支援非capsulated 等位 :
// cpp_attr_ref_switch_type.cpp
// compile with: /LD
#include <windows.h>
[module(name="MyLibrary")];
[ export ]
struct SizedValue2 {
[switch_type("char"), switch_is(kind)] union {
[case(1), string]
wchar_t* wval;
[default, string]
char* val;
};
char kind;
};
範例
需求
屬性內容 | 值 |
---|---|
適用於 | typedef |
可重複 | No |
必要屬性 | 無 |
無效屬性 | 無 |
如需有關屬性內容的詳細資訊,請參閱 屬性內容。