如何判断const修饰的内容:
1、const永远修饰它左边的东西;
2、如果const左边没有内容,则修饰它右边的内容
栗子:
int const *a = 0;
const int *a= 0;
两者是一样的!!!