首页 > 代码库 > typedef笔记

typedef笔记

刚学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笔记