搜索资源列表
demos
- C++学习,比较主要集中测试程序,很好理解C++。如:C++面向对象编程_1、从struct到class,C++面向对象编程_2、构造函数和析构函数,C++面向对象编程_3、操作符_重载_友元_静态成员,C++面向对象编程_4、拷贝控制,C++面向对象编程_5、继承,C++面向对象编程_6、多态性,-C++ learn more focus on testing procedures, a good understanding of C++. Such as: C++ object-orient
ThinkingCplusplus
- 本书作者根据自己学习C++的亲身体会及多年教学经验,用简单的例子和简练的叙述讲解C++编程,别具特色。 全书共分十八章,内容涉及对象的演化、数据抽象、隐藏实现、初始化与清除、函数重载与缺省参数、输入输出流介绍、常量、内联函数、命名控制、引用和拷贝构造函数、运算符重载、动态对象创建、继承和组合、多态和虚函数、模板和包容器类、多重继承、异常处理和运行时类型识别。 -Of this book to learn C++ based on their personal experience a
FISH-AND-ANIMAL-CPP
- C++编译器在编译的时候,发现Animal类的breathe()函数是虚函数,这个时候C++就会采用迟绑定(late binding)的技术,在运行时,依据对象的类型(在程序中,我们传递的Fish类对象的地址)来确认调用的哪一个函数,这种能力就做C++的多态性。-C++ compiler during compilation, found the Animal class breathe () function is a virtual function, the c++ will use la