2009年5月26日

[C/C++] - Tips for STL and Generic Programming

摘要: 原文地址:http://tmh-coding-tips.blogspot.com/2008/09/cc-tips-for-stl-and-generic-programming.html [C/C++] - Tips for STL and Generic Programming关于STL与泛型编程的忠告(v1.0)Translated By Phoenix(E-Mail:phoenix8848@... 阅读全文

posted @ 2009-05-26 02:08 phoenix8848cn 阅读(256) 评论(0) 推荐(0) 编辑

[C/C++] - Tips for Better Coding Style

摘要: [C/C++] - Tips for Better Coding Style关于更好的编程风格的建议 (v1.0)Translated By Phoenix(phoenix8848@gmail.com)In this entry, I show you 4 tips that address frequently asked questions from C++ programmers of al... 阅读全文

posted @ 2009-05-26 02:03 phoenix8848cn 阅读(272) 评论(0) 推荐(0) 编辑

[C/C++]关于C++类成员函数的重载、覆盖、隐藏与virtual关键字

摘要: 关于C++类成员函数的重载、覆盖、隐藏与virtual关键字Phoenix(phoenix8848@gmail.com)1. 重载、覆盖与隐藏1).重载:成员函数具有以下的特征时发生"重载"A.相同的范围(同一个类中)B.函数的名字相同C.参数类型不同(不能进行隐式类型转换)D.Virtual关键字可有可无2).覆盖(也叫"继承"):指派生类函数覆盖基类函数,特征是:A.不同的范围(分别位于基类与... 阅读全文

posted @ 2009-05-26 02:00 phoenix8848cn 阅读(2486) 评论(1) 推荐(1) 编辑

导航