无法初始化具有联合的结构数组的元素

Trouble Initializing a element of an array of Structs that has a Union

我在初始化一个也有联合的结构时遇到了问题。 我尝试遵循一些指南,似乎我是正确的,但如果它不起作用,显然不是。

我有以下header

#ifndef MENU_H_
#define MENU_H_

typedef struct student{
    int gpa;
    float tuitionFees;
    int numCourses;
}student;

typedef struct employee{
    float salary;
    int serviceYears;
    int level;
}employee;

typedef struct person{
    char firstName[20];
    char familyName[20];
    char telephoneNum[10];
    int type; // 0 = student / 1 = employee;
    union{
        employee e;
        student s;
    };
}newPerson;

#endif

然后这就是我遇到的问题

newPerson person[MAX_PERSONS];
person[1] = {"geo", "dude", "6136544565", 0, {3, 2353, 234}};

当我尝试初始化 person[1] 时,出现以下错误

error: expected expression before ‘{’ token

我想知道这可能是什么原因?好像我没有少戴牙套,我也试过取下内牙套,但还是没用。任何帮助将不胜感激。谢谢

错误消息指的是第一个左大括号。您可以使用大括号语法初始化一个对象,但不能对其赋值。换句话说,这有效:

int array[3] = {0, 8, 15};

但这不是:

array = {7, 8, 9};

C99 引入了复合文字,看起来像是类型转换和初始化程序的组合,例如:

int *array;

array = (int[3]){ 1, 2, 3 };

C99 还引入了指定初始化,您可以在其中指定要初始化的数组索引或 struct 或“union”字段:

int array[3] = {[2] = -1};        // {0, 0, -1}
employee e = {.level = 2};        // {0.0, 0, 3}

如果我们将这些特征应用到您的问题中,我们会得到如下结果:

enum {
    STUDENT, EMPLOYEE
};

typedef struct student{
    int gpa;
    float tuitionFees;
    int numCourses;
} student;

typedef struct employee{
    float salary;
    int serviceYears;
    int level;
} employee;

typedef struct person{
    char firstName[20];
    char familyName[20];
    char telephoneNum[10];
    int type;
    union {
        employee e;
        student s;
    } data;
} person;

int main()
{
    person p[3];

    p[0] = (person) {
        "Alice", "Atkins", "555-0543", STUDENT,
        .data = { .s = { 20, 1234.50, 3 }}
    };

    p[1] = (person) {
        "Bob", "Burton", "555-8742", EMPLOYEE,
        .data = { .e = { 2000.15, 3, 2 }}
    };    

    return 0;
}

我已经为 union 引入了一个名称,以便我可以在初始化程序中引用它。