对匿名联合体的一些理解

  • Post author:
  • Post category:其他




概念


匿名联合体

是一种语法糖,用于定义

结构体

内一类

互斥

的字段,但这些字段从语义层面上来说又是跟结构体内其他字段平级的。

它跟

匿名结构体

的语法类似,但用处感觉比后者更大些。



代码示例

假设青少年都是普通的,私下里男孩都喜欢玩游戏,女孩都喜欢追星,则我们可以这样定义一个Teenage类

#include<stdio.h>

struct Teenage{
    char *name;
    bool is_female;
    union {
        char *idol_name;
        unsigned short game_num;
    };
    Teenage(char *name, bool is_female):name(name), is_female(is_female){};
    void print_secret() {
        if (this->is_female)
            printf("%s's idol is %s\n", this->name, this->idol_name);
        else
            printf("%s have %u games\n", this->name, this->game_num);
    }
};

int main() {
    Teenage li_lei("李雷", false);
    li_lei.game_num = 6;
    li_lei.print_secret();

    Teenage han_mei_mei("韩梅梅", true);
    han_mei_mei.idol_name = "蔡徐坤";
    han_mei_mei.print_secret();

    return 0;
}

编译时会报一些告警,与本文无关,忽略

运行结果:

李雷 have 6 games
韩梅梅's idol is 蔡徐坤



注意事项

  1. 可以定义多个匿名联合体,只要字段不重复即可,匿名结构体同理。
  2. 包含匿名联合体的

    命名类型

    不一定非得是struct,也可以是另一个union,代表

    互斥

    场景内的

    子互斥

    场景。



版权声明:本文为happen23原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。