Julia999 发表于 2019-7-31 21:02:22

结构体

结构体:
为什么会出现结构体?
    为了表示一些复杂的数据,而普通数据的基本类型变量无法满足要求
什么叫结构体?
    结构体是用户根据实际需要自己定义的复合数据类型
#include<stdio.h>
#include<string.h>
struct Student
{
        int id;
        char name;
        int age;
};
int main()
{
        struct Student std={1000,"zhangsan",20};
        printf("%d",std.age);
        //std.name="julia";//error
        strcpy(std.name,"julia");
        return 0;
}

#include<stdio.h>

struct Student
{
        int id;
        char name;
        int age;
};
int main()
{
        struct Student st={1000,"zhangshan",20};
        struct Student *pst;
        pst=&st;
        pst->id=99;//pst->id等价于(*pst).id
       
        return 0;
}

注意事项:
结构体变量不能加减乘除,但可以赋值

普通结构体变量和结构体指针变量作为函数传参的问题
动态内存的分配和释放


页: [1]
查看完整版本: 结构体