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

struct和typedef struct

时间:2014-10-22 12:58:06      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:style   color   ar   使用   strong   sp   on   ad   bs   


1 首先://注意在C和C++里不同
    在C中定义一个结构体类型要用typedef:
    typedef struct Student
    {
    int a;
    }Stu;
    于是在声明变量的时候就可:Stu stu1;
    这里的Stu实际上就是struct Student的别名。Stu==struct Student
  
    但在c++里很简单,直接
    struct Student
    {
    int a;
    };    
    于是就定义了结构体类型Student,声明变量时直接Student stu2;
======================================================================================


2.其次:
    在c++中如果用typedef的话,又会造成区别:
    struct   Student   
    {   
    int   a;   
    }stu1;//stu1是一个变量  

 
    typedef   struct   Student2   
    {   
    int   a;   
    }stu2;//stu2是一个结构体类型=struct Student  

 
    使用时可以直接访问stu1.a
    但是stu2则必须先   stu2 s2;
    然后               s2.a=10;
====================================================================================


总结:

C/C++都可以像这样:

 typedef struct Student
    {
    int a;
    }Stu;


这个时候Stu是一个类型,声明变量的时候就可:Stu stu1;

只不过C++有简单的:

struct Student
    {
    int a;
    };  

这个时候Student是一个类型,声明变量: Student stu1


记住总结即可

struct和typedef struct

标签:style   color   ar   使用   strong   sp   on   ad   bs   

原文地址:http://blog.csdn.net/jiangnanyidiao/article/details/40373387

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