const 与typedef

typedef string* pstring;//pstring是一个指向string类型的指针类型

const pstring cstr; //注意 cstr是一个string * const 的变量,也就是指向string类型的的const 指针.

因为const 总是修饰cstr的. 想想 const int a=3; const double f=0.3;

pstring const cstr1;

//这个声明和上面的声明一样的.

你可能感兴趣的:(const 与typedef)