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

9.typedef

时间:2014-11-10 15:29:14      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:style   color   ar   sp   strong   数据   div   on   bs   

关键字typedef
 
typedef 操作符可以看做是普通变量和类型之间的转换开关!!
例如
typedef int Integer;//定义了一种类型
int Integer;//定义了一个变量
就是类型和变量的区别
 
A. 对数据类型定义“别名"
int main(int argc, const char * argv[]) {
    typedef int integer;
    integer i = 5;
    printf("print the int: %d\n", i);
   
    return 0;
}
 
区别于宏定义的概念,typedef相当于定义了一种新的数据类型,而不是简单的别名
 
在”别名“的基础上再定义一个别名
    typedef int integer;
    typedef integer mytype;
 
B. typedef与指针
    typedef char * String;
    String name = "Simon;
 
C. typedef与结构体
    typedef struct MyPoint
    {
        int x;
        int y;
    } Point;
   
    Point p = {10, 10};
 
D. typedef 结构体指针
    typedef struct
    {
        int age;
        char *name;
    } * PP;
 
PP per1 = {11, "Tom"};//Running Error
shoulde be:
PP per1;
per1->age = 17;
(*per1).name = "Tom";
 
E. typedef 指向函数的指针
 
 
F. #define 与  typedef 的区别
typedef char * String1
#define String2 char *
 
String1 s1,s2;
String2 s3,s4;
 
==> 其中,s1,s2,s3是char指针,s4仅仅是普通的char变量

9.typedef

标签:style   color   ar   sp   strong   数据   div   on   bs   

原文地址:http://www.cnblogs.com/hellovoidworld/p/4087117.html

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