01.
Errata for The C++ Programming Language(SE)(涵盖影印版至今的所有已知错误)Errata for The C++ Programming Language(SE)Here, I made a packet of all the erratas for the book "The C++ Programming Language (Special Edition)" from the first print of the Sepcial Edition,...查看完整版>>
Errata for The C++ Programming Language(SE)(涵盖影印版至今的所有已知错误)
02.
《The C++ Programming Language (Special Edition)》中的忠告第1章 致读者 在编写程序时,你是在为你针对某个问题的解决方案中的思想建立起一种具体表示。让程序的结构尽可能地直接反映这些思想: 如果你能把“它”看成一个独立的概念,就把它做成一个类。 如...查看完整版>>
《The C++ Programming Language (Special Edition)》中的忠告
03.
Elements of Programming Style -- The C++ Style Guide Elements of Programming Style -- The C++ Style Guide January 23, 1996 Version 1.0 Files Header files have a ".h" suffix. Header file contains class, struct, and union declarations, enum dec...查看完整版>>
Elements of Programming Style -- The C++ Style Guide
04.
《The C++ programming language》读书笔记(2)——第二章:C++ 概览第二章:C++ 概览n对语言特征的细节理解——甚至有关一个语言的所有特征——也不能代替对该语言以及使用它的基本技术的全局性认识。 n最重要的问题并不在于某个语言究竟拥有多少特征,而在于它所...查看完整版>>
《The C++ programming language》读书笔记(2)——第二章:C++ 概览
05.
《The C++ programming language》读书笔记(1)——第一章:致读者第一章:致读者n对于程序设计和设计技术的理解远比对细节的理解更重要,而这种理解的根本是时间和实践。 n要想从C++中获益,他们就必须花时间去学习,以使适合于C++的程序设计风格和技术真正变成自己的东西。 n一个良...查看完整版>>
《The C++ programming language》读书笔记(1)——第一章:致读者
06.
Bjarne Stroustrup(BS)博士在 The C++ Programming Language(Special Edition)中对读者的忠告2(摘抄)Bjarne Stroustrup(BS)博士在 The C++ Programming Language(Special Edition)中对读者的忠告(摘抄) 第 4 章 类型和声明1. 保持较小的作用域。2. 不要在一个作用域和它外围的作用域里采用同样的名字。3. 在...查看完整版>>
Bjarne Stroustrup(BS)博士在 The C++ Programming Language(Special Edition)中对读者的忠告2(摘抄)
07.
Bjarne Stroustrup(BS)博士在 The C++ Programming Language(Special Edition)中对读者的忠告1(摘抄)Bjarne Stroustrup(BS)博士在 The C++ Programming Language(Special Edition)中对读者的忠告(摘抄) 第1章 致读者1. 在编程序时,你是在为你针对某个问题的解决方案中的思想建立起一种具体表示。让...查看完整版>>
Bjarne Stroustrup(BS)博士在 The C++ Programming Language(Special Edition)中对读者的忠告1(摘抄)
08.
Date类(C++ Programming Language第10章课后题10.6.2的一部分)//Data.h#include <iostream>#include <string>using namespace std;class Date{public: enum Month { jan = 1, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec }; class BadDate{ }; Date(i...查看完整版>>
Date类(C++ Programming Language第10章课后题10.6.2的一部分)
09.
思考c++编程-译自c++ programming language 1.7节思考c++编程 理想的状态下,你完成一个程序设计任务分为三步。第一,你必须清楚的理解问题(分析analysis),然后,你要定义在解决方案中关键的概念(设计design),最后,你必须以程序的方式表达出解决方案(编程prog...查看完整版>>
思考c++编程-译自c++ programming language 1.7节
10.
Imperfect C++ Practical Solutions for Real-Life Programming-Chapter11.StaticsMatthew Wilson 著树人译Chapter 11静态变量Chapter 11静态变量 静态对象不同于栈变量和堆变量,因为它们的内存是由链接器固定并分配的,而且它们的生存期(很大程度上)与进程的执行流是不相关的。静态对象分为三种...查看完整版>>
Imperfect C++ Practical Solutions for Real-Life Programming-Chapter11.Statics
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。