01.
C++ 的词法分析, by Polyrandom作者:Polyrandomfrom: allaboutprogram 转载请注明作者和出处C++ 的词法分析词法分析是指原文件被分解为词法符号的过程,通常是整个编译过程的第一步。虽然通常认为了解 C++ 的词法分析过程对于大多数一辈子都不会编...查看完整版>>
C++ 的词法分析, by Polyrandom
02.
《Continuous Integration with Visual C++ and COM》by William E Caputo and Oren Millermark....查看完整版>>
《Continuous Integration with Visual C++ and COM》by William E Caputo and Oren Miller
03.
翻译: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)(下)
04.
翻译: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)(上)
05.
C++ 的 MTL 库 示例(整理 by RobinKin from DevonIT)//距阵copy 和 转置// -*- c++ -*-//// $COPYRIGHT$////===========================================================================#include <iostream>using namespace std;#include <mtl/matrix.h>...查看完整版>>
C++ 的 MTL 库 示例(整理 by RobinKin from DevonIT)
06.
《Continuous Integration with Visual C++ and COM》by William E Caputo and Oren Millermark. http://martinfowler.com/articles/ciWithCom.html...查看完整版>>
《Continuous Integration with Visual C++ and COM》by William E Caputo and Oren Miller
07.
Learn C++ step by step(2)// using Dev C++ under WinXP#include <iostream>#include <cstdlib>using namespace std; //standard c++ style about namespace//define ADT Timeclass Time{public: Time(); //default construct...查看完整版>>
Learn C++ step by step(2)
08.
Learn c++ step by step通过这个例子边可以看出区别,而且注意一定要用标准C++的样式打好基础#include <iostream>#include <cstdlib>using namespace std;int add1CallByValue(int t); //define function prototypevoid add1By...查看完整版>>
Learn c++ step by step
09.
书评:C++网络编程,卷2 by Matthew Wilson书评:C++网络编程,卷2 by Matthew Wilson Title: C++ Network Programming, Volume 2: Systematic Reuse with ACE and FrameworksAuthors: Douglas C. Schmidt and Stephen D. Huston Publisher: Addison Wesl...查看完整版>>
书评:C++网络编程,卷2 by Matthew Wilson
10.
C++ and STL: Take Advantage of STL Algorithms by Implementing a Custom IteratorSamir BajajThis article assumes you’re familiar with C++ and STLLevel of Difficulty 1 2 3 Download the code for this article: Browse the code for this article at Code Center: ---SUMMARY The...查看完整版>>
C++ and STL: Take Advantage of STL Algorithms by Implementing a Custom Iterator
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。