码迷,mamicode.com
首页 > 编程语言 > 详细

C++ 结构体(二)

时间:2014-12-26 20:23:12      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:

1.用typedef定义类型名

typedef 的使用
关键字typedef用来为已经存在的数据类型定义一个“别名”,使程序“更具有”可读性。
  例如:     typedef    unsigned int     uint;
                typedef   int *      ptrint;
         typedef    struct stu_info     StuInfo;
                则,ptrint   p1; 与  int *    p1; 等价。
   注意 ptrint   p1,p2;
   以及 #define   ptrint    int*
   ptrint   p1,p2; 的区别。

一般格式:

typedef     原数据类型     新类型名;

typedef     struct  stu_info     StuInfo;


2.用typedef定义类型名

typedef   struct   stu_info
{       
    char  name[12];      /*学生姓名*/
    int num;                   /*学生学号*/
    char id_card[19];   /*身份证号码*/                
    int m_score;          /*数学成绩*/
    int c_score;           /*语文成绩*/
    int h_score;          /*历史成绩*/
} StuInfo;

其中, StuInfo是新类型名



C++ 结构体(二)

标签:

原文地址:http://blog.csdn.net/gxseveryday/article/details/42175531

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