const修饰指针的4种形式
const关键字,在C语言中用来修饰变量,表示这个变量是常量。
const修饰指针有4种形式,区分清楚这4种即可全部理解const和指针。
第一种:const int *p;
第二种:int const *p;
第三种:int * const p;
第四种:const int * const p;
ation ‘*p4’
// 第一种const int *p1; // p本身不是cosnt的,而p指向的变量是const的// 第二种int const *p2; // p本身不是cosnt的,而p指向的变量是const的
// 第三种int * const p3; // p本身是cosnt的,p指向的变量不是const的// 第四种const int * const p4;// p本身是cosnt的,p指向的变量也是const的*p1 = 3; // error: assignment of read-only location ‘*p1’p1 = &a; // 编译无错误无警告
*p2 = 5; // error: assignment of read-only location ‘*p2’p2 = &a; // 编译无错误无警告
*p3 = 5; // 编译无错误无警告p3 = &a; // error: assignment of read-only variable ‘p3’
p4 = &a;