当前位置: 代码迷 >> 综合 >> typedef struct 小结
  详细解决方案

typedef struct 小结

热度:62   发布时间:2023-12-11 15:59:26.0

1 结构体定义

 struct [结构体姓名]

{

// 里面定义变量等内容

}[可选内容];


例如

struct point

{};

在使用时可以

struct point pt={220,200};

这就是多结构 point类型的声明以及初始化,看好形式,切记.

struct point

{}x ;

这个就类似于

int x;

所以我们就很好理解

typedef struct point {

} x;

//(类比 typedef int x 定义)记忆

这就利用typedef 的用法定义了一个point 结构体.用x来代替,故

声明这个结构体时 就可以简写成

x  sdsfds;


  相关解决方案