C++经典著作列表1.入门书籍?《C++程序设计教程(第二版)》?《C++全方位学习》?《C++高质量编程》?《C++Primer中文版(第5版)》?《C++Primer(FifthEdition)》?《C++PrimerPlus中文版(第六版)》?《C++PrimerPlus(SixthEdition)》2.进阶书籍?《ThinkinginC++》?《ATourOfC++》?《C++编程思想》?
分类:
编程语言 时间:
2020-11-25 12:13:43
阅读次数:
8
第九章 多重继承 9.2 接口继承 Intertfacees.cpp /** * 书本:【ThinkingInC++】 * 功能:接口继承Interfaces.cpp * 时间:2014年10月28日20:06:31 * 作者:cutter_point */ #include <iostream> ...
分类:
编程语言 时间:
2016-04-08 13:18:10
阅读次数:
197
/*** 书本:【ThinkingInC++】* 功能:函数内部的静态变量* 时间:2014年9月17日18:06:33* 作者:cutter_point*/#include "../require.h"#include using namespace std;char oneChar(const ...
分类:
编程语言 时间:
2016-01-05 12:43:52
阅读次数:
212
/***特征:输入和输出流*时间:2014年8月8日07:37:35*作者:cutter_point*/#includeusing namespace std;int main(){ cout<<"a number in decimal:"<<dec<<15<<endl; //十进制输出...
分类:
编程语言 时间:
2015-12-13 14:01:21
阅读次数:
174
非成员运算符当操作者的左侧是不同的类时。运算符重载不可能是正确的类中。IostreamOperatorOverloading.cpp/*** 书本:【ThinkingInC++】* 功能:非成员运算符* 时间:2014年10月4日14:23:25* 作者:cutter_point*/ //当运算符的...
分类:
编程语言 时间:
2015-12-10 16:26:28
阅读次数:
138
第十章 设计模式
10.3 简化习语
10.3.1 信使
他将消息封装到一个对象中到处传递,而不是将消息的所有片段分开进行传递。
MessengerDemo.cpp
/**
* 书本:【ThinkingInC++】 MessengerDemo.cpp
* 功能:将消息封装到一个对象中到处传递
* 时间:2014年10月29日17:54:53
* 作者:cu...
分类:
编程语言 时间:
2014-10-29 22:24:45
阅读次数:
389
第九章 多重继承
9.2 接口继承
Intertfacees.cpp
/**
* 书本:【ThinkingInC++】
* 功能:接口继承Interfaces.cpp
* 时间:2014年10月28日20:06:31
* 作者:cutter_point
*/
#include
#include
#include
using namespace std;
...
分类:
编程语言 时间:
2014-10-28 21:48:35
阅读次数:
204
第五章 深入理解模板
5.1 模板参数
关于bitset
bitset就是可以存放二进制的容器。
对于bitset的主要操作有:
(constructor)
Construct bitset (public member function) //构造bitset..
格式bitset长度> 名字
applicable operators
...
分类:
编程语言 时间:
2014-10-16 18:51:43
阅读次数:
328
第四章 输入输出流
Strfiile.cpp
/**
* 书本:【ThinkingInC++】
* 功能:一个文件的输入输出流
* 时间:2014年10月12日15:15:59
* 作者:cutter_point
*/
#include //很多平台上会自动包含但是不是所有
#include
#include "../require.h"
using namespace std;
i...
分类:
编程语言 时间:
2014-10-12 16:51:28
阅读次数:
300
第一章 异常处理
1.5清理
1.5.1 资源管理
如果一个对象的构造函数在执行过程中抛出异常,那么这个对象的析构函数就不会被调用。
Rawp.cpp
/**
* 书本:【ThinkingInC++】
* 功能:资源管理
* 时间:2014年10月8日20:19:03
* 作者:cutter_point
*/
#include
#include
using namespace s...
分类:
编程语言 时间:
2014-10-09 15:38:08
阅读次数:
235