01.
翻译:Effective C++, 3rd Edition, Item 40: 谨慎使用 multiple inheritance(多继承)Item 40: 谨慎使用 multiple inheritance(多继承)作者:译者:发布:触及 multiple inheritance (MI)(多继承)的时候,C++ 社区就会鲜明地分裂为两个基本的阵营。一个阵营认为如果 single inheritance (SI)(单继...查看完整版>>
翻译:Effective C++, 3rd Edition, Item 40: 谨慎使用 multiple inheritance(多继承)
02.
翻译:Effective C++, 3rd Edition, Item 40: 谨慎使用 multiple inheritance(多继承)Item 40: 谨慎使用 multiple inheritance(多继承)作者:译者:发布:触及 multiple inheritance (MI)(多继承)的时候,C++ 社区就会鲜明地分裂为两个基本的阵营。一个阵营认为如果 single inheritance (SI)(单继...查看完整版>>
翻译:Effective C++, 3rd Edition, Item 40: 谨慎使用 multiple inheritance(多继承)
03.
翻译:Effective C++, 3rd Edition, Item 32: 确保 public inheritance 模拟 "is-a"(下)你能说出其中的区别吗?从错误被发觉时间方面看。“企鹅不能飞”的禁令可以由编译器强令执行,但是对“让企鹅真的去飞是一个错误”的规约的违反,只有在运行时才能被发觉。为了表达“企鹅不...查看完整版>>
翻译:Effective C++, 3rd Edition, Item 32: 确保 public inheritance 模拟 "is-a"(下)
04.
翻译:Effective C++, 3rd Edition, Item 32: 确保 public inheritance 模拟 "is-a"(上)Item 32: 确保 public inheritance 模拟 "is-a"作者:译者:发布:在 Some Must Watch While Some Must Sleep (W. H. Freeman and Company, 1974) 这本书中,William Dement 讲述了一个他试图让他的学生的...查看完整版>>
翻译:Effective C++, 3rd Edition, Item 32: 确保 public inheritance 模拟 "is-a"(上)
05.
翻译:Effective C++, 3rd Edition, Item 44: 从 templates(模板)中分离出 parameter-independent(参数无关)的代码(上)Item 44: 从 templates(模板)中分离出 parameter-independent(参数无关)的代码作者:译者:发布:templates(模板)是节省时间和避免代码重复的极好方法。不必再输入 20 个相似的 classes,每一个包含 15 个 mem...查看完整版>>
翻译:Effective C++, 3rd Edition, Item 44: 从 templates(模板)中分离出 parameter-independent(参数无关)的代码(上)
06.
[翻译] Effective C++, 3rd Edition, Item 49: 了解 new-handler 的行为(下)但是也许你依然在为 Widget 从 NewHandlerSupport<Widget> 继承而烦恼。如果是这样,当你注意到 NewHandlerSupport template 从来没有用到它的 type parameter T 时,你可能会更加烦恼。它不需要那样做。我们需...查看完整版>>
[翻译] Effective C++, 3rd Edition, Item 49: 了解 new-handler 的行为(下)
07.
[翻译] Effective C++, 3rd Edition, Item 49: 了解 new-handler 的行为(上)Item 49: 了解 new-handler 的行为作者:译者:发布:当 operator new 不能满足一个内存分配请求时,它抛出一个 exception(异常)。很久以前,他返回一个 null pointer(空指针),而一些比较老的编译器还在这样做。...查看完整版>>
[翻译] Effective C++, 3rd Edition, Item 49: 了解 new-handler 的行为(上)
08.
翻译:Effective C++, 3rd Edition, Item 44: 从 templates(模板)中分离出 parameter-independent(参数无关)的代码(下)一个可替换方案是让 SquareMatrixBase 存储一个指向矩阵的值的内存区域的指针。而且一旦它存储了这个指针,它同样也可以存储矩阵大小。最后得到的设计大致就像这样:template<typename T>class SquareMatrixBa...查看完整版>>
翻译:Effective C++, 3rd Edition, Item 44: 从 templates(模板)中分离出 parameter-independent(参数无关)的代码(下)
09.
翻译:Effective C++, 3rd Edition, Item 44: 从 templates(模板)中分离出 parameter-independent(参数无关)的代码(上)Item 44: 从 templates(模板)中分离出 parameter-independent(参数无关)的代码作者:译者:发布:templates(模板)是节省时间和避免代码重复的极好方法。不必再输入 20 个相似的 classes,每一个包含 15 个 mem...查看完整版>>
翻译:Effective C++, 3rd Edition, Item 44: 从 templates(模板)中分离出 parameter-independent(参数无关)的代码(上)
10.
翻译:Effective C++, 3rd Edition, Item 33: 避免覆盖(hiding)“通过继承得到的名字”(下)这一行为背后的根本原因是为了防止“当你在一个 library 或者 application framework 中创建一个新的 derived class 时,偶然地发生从遥远的 base classes 继承 overloads 的情况”。不幸的是,一般情况下...查看完整版>>
翻译:Effective C++, 3rd Edition, Item 33: 避免覆盖(hiding)“通过继承得到的名字”(下)
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。