共用方式為


switch 屬性

switch關鍵字會選取encapsulated_union的辨別。

switch (switch-type switch-name)

參數

switch-type

指定 intcharenum 類型或解析為下列其中一種類型的識別碼。

switch-name

指定類型 switch-type 變數的名稱,做為等位辨別。

範例

typedef union _S1_TYPE switch (long l1) U1_TYPE 
{ 
    case 1024: 
        float f1; 
    case 2048: 
        double d2; 
} S1_TYPE; 
 
/* in generated header file */ 
typedef struct _S1_TYPE 
{ 
    long l1; 
    union 
    { 
        float f1; 
        double d2; 
    } U1_TYPE; 
} S1_TYPE;

另請參閱

介面定義 (IDL) 檔案

非擷取聯集

switch_is

switch_type

聯盟