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

typedef笔记

时间:2014-10-21 00:39:29      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   使用   sp   div   on   log   

刚学typedef,当typedef后的类型别名用在其他变量声明中时,可能会对其使用有点迷惑

 1 int main(int argc, char *argv[])
 2 {
 3     int x = 3;
 4     typedef int * p;
 5     p const cp = &x;  //  const p cp = &x;    这2者写法效果一样。
 6     ++cp;        //报错
 7     *cp = 4;
 8     cout << x;
 9     return 0;
10 }

 

可见typedef后的类型别名,并不是展开,把它当内置类型名那样的普通类型名看待就不会错。

typedef笔记

标签:style   blog   color   ar   使用   sp   div   on   log   

原文地址:http://www.cnblogs.com/subFire/p/4039081.html

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