gpt4 book ai didi

c - 无法初始化具有 union 的结构数组的元素

转载 作者:太空宇宙 更新时间:2023-11-04 01:27:22 24 4
gpt4 key购买 nike

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

我有以下标题

#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 引入了一个名称,以便我可以在初始化程序中引用它。

关于c - 无法初始化具有 union 的结构数组的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28655680/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com