c语言中struct和typedef struct的用法

基本形式

在C语言中,可以使用结构体(Struct)来存放一组不同类型的数据。结构体的定义形式为:

struct 结构体名
{
    结构体所包含的变量或数组
};

结构体是一种集合,它里面包含了多个变量或数组,它们的类型可以相同,也可以不同,每个这样的变量或数组都称为结构体的成员(Member),比如

struct stu{
    char *name;  //姓名
    int num;  //学号
    int age;  //年龄
    char group;  //所在学习小组
    float score;  //成绩
};

注意大括号后面的分号;不能少,这是一条完整的语句

结构体可以包含多个基本类型的数据,也可以包含其他的结构体,称为复杂数据类型或构造数据类型。
**

struct的用法

**
1.

struct stu{
    char *name;  //姓名
    int num;  //学号
    int age;  //年龄
    char group;  //小组
    float score;  //成绩
};

既然结构体是一种数据类型,那么就可以用它来定义变量。例如:
struct stu stu1, stu2;

2.

你也可以在定义结构体的同时定义结构体变量:
struct stu{
    char *name;  //姓名
    int num;  //学号
    int age;  //年龄
    char group;  //小组
    float score;  //成绩
} stu1, stu2;

3.

如果只需要 stu1、stu2 两个变量,后面不需要再使用结构体名定义其他变量,那么在定义时就可以不给出结构体名,eg.
struct{  //这里没有写 stu
    char *name;  //姓名
    int num;  //学号
    int age;  //年龄
    char group;  //小组
    float score;  //成绩
} stu1, stu2;

typedef struct的用法

typedef 就是给结构体起别名,比如:小明可以叫明明,喊明明和小明是一样的。
下面的例子就是 stu是struct student的别名一样,皇上不来,圣旨同样有效力。
1.

typedef struct student{

    char *name;  //姓名
    int num;  //学号
    int age;  //年龄
    char group;  //小组
    float score;  //成绩
}stu;
那么我们定义该结构体变量的时候,就可以直接
stu stu1;

2.

可以直接省略student,直接用stu
typedef struct {

    char *name;  //姓名
    int num;  //学号
    int age;  //年龄
    char group;  //小组
    float score;  //成绩
}stu;
stu stu1;

有时候写代码,常常会混淆struct和typedef struct的用法,在这里做个记录,方便查看

你可能感兴趣的:(c语言,typedef,数据结构,c语言,c++)