[阅读笔记] 《Effective C++》的一些记录和思考
摘要:Effective C++ Iter 3 - 尽可能使用 const 一个反逻辑的 bitwise const class Text { ... char& operator[](std::size_t pos) const { return text[pos]; } private: char *
阅读全文
posted @ 2019-01-05 12:37