标签: pointers c++11 const constexpr
第一个代码: const int i = 10; constexpr const int * p =& i;
第二个代码: const int i = 10; const int * const p =& i;