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

结构体以及结构体指针——//知识复习//

时间:2018-08-28 13:06:24      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:type   lin   定义   def   text   存在   har   data   常见   

结构体

struct node

{

         int data;

         char sex;

}s1,s2;                         //-------------变量s1,s2

 

typedef struct node

{

         int data;

         char sex;

}SS;                           //-------------类型名SS

 

typedef 存在类型名 自定义类型名

 

结构体指针

typedef struct node

{

         int data;

         struct node* next;           //-------------定义的同时使用

};*pointer;

等价于

typedef struct node* pointer

{

         int data;

         pointer next;               //-------------定义的同时使用

};

等价于

struct node

{

         int data;

         struct node *next;  

};

typedef struct node* pointer;//----------常见的定义方式

结构体以及结构体指针——//知识复习//

标签:type   lin   定义   def   text   存在   har   data   常见   

原文地址:https://www.cnblogs.com/cc1997/p/9547335.html

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