01.
翻译:Effective C++, 3rd Edition, Item 20: 用传引用给 const(pass-by-reference-to-const)取代传值(pass-by-value)(下)(接上篇)如果你掀开编译器的盖头偷看一下,你会发现用指针实现引用是非常典型的做法,所以以引用传递某物实际上通常意味着传递一个指针。由此可以得出结论,如果你有一个内建类型的对象(例如,一个 int),以传值...查看完整版>>
翻译:Effective C++, 3rd Edition, Item 20: 用传引用给 const(pass-by-reference-to-const)取代传值(pass-by-value)(下)
02.
翻译:Effective C++, 3rd Edition, Item 20: 用传引用给 const(pass-by-reference-to-const)取代传值(pass-by-value)(上)Item 20: 用传引用给 const(pass-by-reference-to-const)取代传值(pass-by-value)缺省情况下,C++ 以传值方式将对象传入或传出函数(这是一个从 C 继承来的特性)。除非你特别指定其它方式,否则函数的参数就会以...查看完整版>>
翻译:Effective C++, 3rd Edition, Item 20: 用传引用给 const(pass-by-reference-to-const)取代传值(pass-by-value)(上)
03.
[翻译] Effective C++, 3rd Edition, Item 47: 为类型信息使用 traits classes(特征类)(上)Item 47: 为类型信息使用 traits classes(特征类)作者:译者:发布:STL 主要是由 containers(容器),iterators(迭代器)和 algorithms(算法)的 templates(模板)构成的,但是也有几个 utility templates(实...查看完整版>>
[翻译] Effective C++, 3rd Edition, Item 47: 为类型信息使用 traits classes(特征类)(上)
04.
[翻译] Effective C++, 3rd Edition, Item 47: 为类型信息使用 traits classes(特征类)(下)iterator_traits 通过两部分实现这一点。首先,它强制要求任何 user-defined iterator(用户定义迭代器)类型必须包含一个名为 iterator_category 的嵌套 typedef 用以识别适合的 tag struct(标签结构体)。例如,d...查看完整版>>
[翻译] Effective C++, 3rd Edition, Item 47: 为类型信息使用 traits classes(特征类)(下)
05.
[翻译] Effective C++, 3rd Edition, Item 47: 为类型信息使用 traits classes(特征类)(下)iterator_traits 通过两部分实现这一点。首先,它强制要求任何 user-defined iterator(用户定义迭代器)类型必须包含一个名为 iterator_category 的嵌套 typedef 用以识别适合的 tag struct(标签结构体)。例如,d...查看完整版>>
[翻译] Effective C++, 3rd Edition, Item 47: 为类型信息使用 traits classes(特征类)(下)
06.
[翻译] Effective C++, 3rd Edition, Item 47: 为类型信息使用 traits classes(特征类)(上)Item 47: 为类型信息使用 traits classes(特征类)作者:译者:发布:STL 主要是由 containers(容器),iterators(迭代器)和 algorithms(算法)的 templates(模板)构成的,但是也有几个 utility templates(实...查看完整版>>
[翻译] Effective C++, 3rd Edition, Item 47: 为类型信息使用 traits classes(特征类)(上)
07.
翻译:Effective C++, 3rd Edition, Item 3: 只要可能就用 constItem 3: 只要可能就用 const关于 const 的一件美妙的事情是它允许你指定一种语义上的约束:一个特定的对象不应该被修改。而编译器将执行这一约束。它允许你通知编译器和其他程序员,某个值应该保持不变。如果确实如此...查看完整版>>
翻译:Effective C++, 3rd Edition, Item 3: 只要可能就用 const
08.
翻译:Effective C++, 3rd Edition, Item 43: 了解如何访问 templatized base classes(模板化基类)中的名字(上)jiuItem 43: 了解如何访问 templatized base classes(模板化基类)中的名字作者:译者:发布:假设我们要写一个应用程序,它可以把消息传送到几个不同的公司去。消息既可以以加密方式也可以以明文(不加密)的方式传...查看完整版>>
翻译:Effective C++, 3rd Edition, Item 43: 了解如何访问 templatized base classes(模板化基类)中的名字(上)
09.
翻译:Effective C++, 3rd Edition, Item 43: 了解如何访问 templatized base classes(模板化基类)中的名字(下)已知 MsgSender 针对 CompanyZ 被特化,再次考虑 derived class(派生类)LoggingMsgSender:template<typename Company>class LoggingMsgSender: public MsgSender<Company> {public: ... void sendC...查看完整版>>
翻译:Effective C++, 3rd Edition, Item 43: 了解如何访问 templatized base classes(模板化基类)中的名字(下)
10.
翻译:Effective C++, 3rd Edition, Item 43: 了解如何访问 templatized base classes(模板化基类)中的名字(下)已知 MsgSender 针对 CompanyZ 被特化,再次考虑 derived class(派生类)LoggingMsgSender:template<typename Company>class LoggingMsgSender: public MsgSender<Company> {public: ... void sendC...查看完整版>>
翻译:Effective C++, 3rd Edition, Item 43: 了解如何访问 templatized base classes(模板化基类)中的名字(下)
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。