只需要记住两点: 1、const永远修饰它左边的东西 2、如果const左边没有内容,则修饰它右边的内容 例如: const int *a = 0; int const *a = 0; 两者的功能是一样的。