引用 相当于常量指针。 不过使用起来不需要*, 所以更简洁。常量指针,是指针指向的是常量, *p不可改变。const char *p;或者char const *p;指针常量, 是指针本身是常量, p不可改变。 char * const p;