发布时间:2013-06-27 16:57:09
1,C++ inline用法:An inline function represents a request to the compiler to expand the function at each call point. With an inline function, the compiler replaces the function call with a copy of the code to be executed.//inline会向编译器请求在每个调用点展开函数。inline函数中,编译器用将.........【阅读全文】
发布时间:2013-06-26 17:03:15
Essential C++ 第二章知识点如下:1,函数调用时,传递的参数不同:点击(此处)折叠或打开bool fibon_elem( int pos, int &elem ){……} void main() { if ( fib.........【阅读全文】
发布时间:2013-06-21 09:45:11
第一部分 使用入门vector可用于代替C中的数组,或者MFC中的CArray,从许多说明文档或者网上评论,一般一致认为应该多用vector,因为它的效率更高,而且具备很好的异常安全性。而且vector是STL推荐使用的默认容器,除非你知道你有特殊需要,使用vector不能满足你的需求,例如需要容器在head和tail高效的插入和删除,或.........【阅读全文】