摘要:
一 View C++ as a federation of language c++ 可以看成4部分组成:c Object-Oriented c++Template c++STL二 Perfer consts, enums, inlines to #defines*左表示所指不能改变,*右则表示指针不能改变类中的专属常量(static const)为了只有一份拷贝通常加static,因此需要类外增加一个定义式(类中是申明)类中的常量也可以用 the enum hack 的方法定义template inline函数可以替换宏函数三 Use const whenever possiblepas.. 阅读全文