标签:c const
const char*c;//如果const放在*的左边,表示const指向的内存空间不能写 char * const d=0xaa11;//如果const房子*的右边,表示const修饰d,d是指针变量,d是常量指针 const char *const e;//二者都有 const int a int const a 二者没有区别
C中const用法
原文地址:http://skyarac.blog.51cto.com/5324985/1604089