码迷,mamicode.com
首页 > 其他好文 > 详细

C中多变的结构体 struct typedef

时间:2014-10-19 18:39:26      阅读:270      评论:0      收藏:0      [点我收藏+]

标签:c   结构   struct   typedef   



这几天看代码,看到几种类型的结构体,结构声明如下:

struct    book{

   string name;

   int price;

   int num;

};

此种结构定义结构变量的格式如下:

struct    book      student;


 struct      book{

   string name;

   int price;

   int num;

}student;

此种形式代表声明结构的过程和定义结构变量的过程被合并成一步


typedef    struct  (book){   //book可省略

   string name;

   int price;

   int num;

}student;

typedef的作用是为一个已存在的类型创建一个名字,故此种结构的结构体定义变量的格式是:student    a;



个人认为最后一种在书写上比较方便,当你在程序中大量定义结构体变量时。



C中多变的结构体 struct typedef

标签:c   结构   struct   typedef   

原文地址:http://blog.csdn.net/foreverlxm/article/details/40264475

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!