low-level const and top-level const in C++ Primer
Tuesday, February 26, 2019
C++ Primer 5th Edition (C++ 11) top-level-const 可以表示任意的对象是常量, low-level-const 与复合类型 (compound type) 的基本类型 (base type) 部分有关。 As we’ve seen, a pointer is an object that can point to a different object. As a result, we can talk independently about whether a pointer is const and whether…more