const int * u; //指向const int 的指针int const * u; //同上int * const u; //指向int的指针 int const * const u; //指向const 对象的const 指针const int * const u; //同上