C中:
//定义结构体法一
struct Student
{
int a;
};
//用结构体声明变量
struct Student stu1; // 正确
Student stu2; // 错误,struct Student 放在一起才是定义的结构体类型
//定义结构体法二
typedef struct Student{
int a;
}Stu;
//用结构体声明变量
struct Student std1; // 正确
Stu std2; // 正确, Stu 是 struct Student 的别名
Student stu2; // 错误,同法一
//定义结构体法三
typedef struct {
int a;
}Stu;
//用结构体声明变量
Stu std1; // 正确
//定义结构体法四
struct Student{
int a;
}Stu; // C中是否支持此定义?C++中:
//定义结构体法一:
struct Student
{
int a;
};
//用结构体声明变量
struct Student stu1; // 正确
Student stu2; // 正确,这是与C不同之处
//定义结构体法二
typedef struct Student{
int a;
}Stu;
//用结构体声明变量
struct Student std1; // 正确
Stu std2; // 正确, Stu 是 struct Student 的别名
Student stu2; // 正确
//定义结构体法三
typedef struct {
int a;
}Stu;
//用结构体声明变量
Stu std1; // 正确
//定义结构体法四
struct Student{
int a;
}Stu;
// Stu就是一个变量,可以直接使用
Stu.a = 10;
本文深入探讨了C语言中结构体的定义方法及其应用,包括四种常见定义方式和注意事项。通过实例演示,帮助读者理解如何在C程序中高效地使用结构体。
4万+

被折叠的 条评论
为什么被折叠?



