搜索资源列表
studentdomitorymanagement
- 实现学生宿舍信息的基本管理,采用了面向对象的思想,用到虚函数,多重继承,多态-achieving student hostels basic information management, the use of the object-oriented thinking, use virtual function, multiple inheritance, polymorphism
person2006
- 继承、多继承、虚继承的使用! 如果要想使一个公共基类在派生类中只产生一个基类子对象,则必须将这个基类设定为虚基类。-inheritance, multiple inheritance, the use of virtual inheritance! If we want to make a public base class in the derived class only have a base class Object son
c++primeranswer
- C++ Primer 第三版 学习辅导 类的创建、继承、虚函数的使用 bugzhao@sohu.com 原书第23~40页 可以将断点设置在return 0处,然后按F5, 并记录下所有整型数组类ia指针的值,比如: 0x00491f90 0x00491f50 0x00490120 0x00491da0 0x00491d50 然后当调试指针停在return 0处时单步执行, 跟
grahic
- 对初学者理解c++的抽象继承虚函数等机制相当有用,这是一个画点线多边形的的实例程序。-for beginners to understand the abstract c succession mechanisms such as virtual function very useful. This is a drawing point line polygon examples of the procedure.
123
- 先创建一个雇员类,然后再派生四个类,并通过虚继承的方式继承相应的基类,以使相同的函数名可以在不同的类中具有不同的函数功能,如在各个类中重新定义输入数据函数、保存数据函数。然后,在定义完各个类之后,再定义数据录入函数、通过数据返回函数进行冒泡排序并输出的数据统计函数、数据保存函数、系统退出函数,最后完成相应的功能。
6.16-虚继承
- 此程序展示了C++得虚继承特性 源代码是老师所推荐 规范高效的代码-display in a virtual C source code inherited characteristics recommended by teachers norms efficient code
6.16-虚继承
- 此程序展示了C++得虚继承特性 源代码是老师所推荐 规范高效的代码-display in a virtual C source code inherited characteristics recommended by teachers norms efficient code
studentdomitorymanagement
- 实现学生宿舍信息的基本管理,采用了面向对象的思想,用到虚函数,多重继承,多态-achieving student hostels basic information management, the use of the object-oriented thinking, use virtual function, multiple inheritance, polymorphism
person2006
- 继承、多继承、虚继承的使用! 如果要想使一个公共基类在派生类中只产生一个基类子对象,则必须将这个基类设定为虚基类。-inheritance, multiple inheritance, the use of virtual inheritance! If we want to make a public base class in the derived class only have a base class Object son
caipai_moni
- 用继承,多态,虚函数的理论解决实际问题,加入C++的文件操作.-with inheritance, polymorphism, the virtual function theory to solve practical problems, to C file operations.
123
- 先创建一个雇员类,然后再派生四个类,并通过虚继承的方式继承相应的基类,以使相同的函数名可以在不同的类中具有不同的函数功能,如在各个类中重新定义输入数据函数、保存数据函数。然后,在定义完各个类之后,再定义数据录入函数、通过数据返回函数进行冒泡排序并输出的数据统计函数、数据保存函数、系统退出函数,最后完成相应的功能。-err
shape
- 用C++实现一个具体事例,形状作为基类,正方形,三角形等等作为派生类。来体现类的多态性,其中涉及多态,继承,虚函数的使用。-using a C++ example to illustrate polymorphism, virtual function and etc. The example has a base class of shape, and many concrete shapes as derived classes.
4deprivedCompanyInfoMana
- 用虚继承的方法实现公司人员信息管理系统(可用)-Implementation of virtual method inherited by company personnel information management system (available)
C-P-P-vinh-and-vftable
- C++虚继承与虚函数表 说明了类中存在虚继承情况时虚函数表的存储格式-C++ virtual inheritance and virtual function table
small-example
- 一些C++设计模式的小例子和虚继承的实现!-some C++ designed example and virtual etc...
VirtualInheritance
- 虚继承使用范例,通过信息显示能更好了解虚继承的原理-Using virtual inheritance example, through information displays to better understand the principles of virtual inheritance
6.16-虚继承
- 此程序展示了C++得虚继承特性 源代码是老师所推荐 规范高效的代码-display in a virtual C source code inherited characteristics recommended by teachers norms efficient code
ObjectModel-
- C++对象模型在内存中的实现,讲述了类,继承以及虚继承的内存布局;成员变量和成员函数的访问已经访问时的开销情况,包含虚函数的情况,考察构造函数,析构函数,以及特殊的赋值操作符成员函数是如何工作的,数组是如何动态构造和销毁的;简单地介绍对异常处理的支持。-C++ Object Model in memory, about classes, inheritance and virtual inheritance memory layout
虚继承
- 定义ChildLabourer童工类,公有继承工人类和儿童类,从而形成菱形继承关系 在main函数中通过new实例化ChildLabourer类的对象,并通过该对象调用Person,Worker及Children类中的成员函数,最后销毁该对象,掌握多重继承,多继承,虚继承的定义方法。(Defines the ChildLabourer child class, the public successor worker, the huma
实验6
- 掌握继承和派生的定义,派生类的定义方法和继承方式。 掌握派生类中的构造函数的使用。 掌握多重继承的概念、定义方法、多重继承派生类构造函数的执行顺序。 掌握虚基类的概念和定义方法。 定义一个基类有姓名、性别、年龄;再由基类派生出教师类和学生类,教师类增加工号、职称和工资,学生类增加学号、班级、专业和入学成绩;由学生类和教师类派生在职研究生类和在读教师类,在职研究生类增加工作单位。(First, the purpose of the exp