CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - 继承

搜索资源列表

  1. tabtoolbardemo_src.zip

    1下载:
  2. Because my application required the use of a lot of tools (just like 3DS Max), I decided to implement this control. Here I shall share with you the most important details of creating the tabbed toolbar. The implementation of the control is quite
  3. 所属分类:界面编程

    • 发布日期:
    • 文件大小:89039
    • 提供者:
  1. Example005-继承窗体的设计.rar

    0下载:
  2. 所属分类:对话框与窗口

    • 发布日期:
    • 文件大小:10297
    • 提供者:
  1. Example005-继承窗体的设计

    0下载:
  2. 设计一个窗体,能够继承其他窗体所包含的类及控件。-a Form Design, to inherit other forms included in the categories and controls.
  3. 所属分类:对话框与窗口

    • 发布日期:2008-10-13
    • 文件大小:10564
    • 提供者:万源
  1. LEFXpProgressBar

    0下载:
  2. xp风格控件,可以实现多种XP效果。其属性和方法继承了vb系统中ProgressBar控件。-Xp style control, realizing variety XP style. Its properties and methods inherit the ProgressBar of VB.
  3. 所属分类:状态条

    • 发布日期:2008-10-13
    • 文件大小:18341
    • 提供者:力封
  1. COM组件接口继承的实现

    0下载:
  2. COM组件接口继承的实现,是学习com编程的入门级例程-COM interface inheritance is true, the study com entry-level programming routines
  3. 所属分类:ActiveX/DCOM

    • 发布日期:2008-10-13
    • 文件大小:68511
    • 提供者:张少杰
  1. C++语言中的公有继承应用举例

    0下载:
  2. C++语言中的公有继承应用举例,显示圆和矩形的坐标.
  3. 所属分类:C#编程

    • 发布日期:2014-01-17
    • 文件大小:3006
    • 提供者:欧阳开光
  1. VC继承对话框

    0下载:
  2. 继承对话框的一个实例程序!
  3. 所属分类:对话框与窗口

    • 发布日期:2008-12-30
    • 文件大小:213136
    • 提供者:wuwinner
  1. C++类的多重继承

    0下载:
  2. C++类的多重继承,显示日期时间源代码。
  3. 所属分类:其他小程序

  1. 从CWnd继承,完全自绘的滚动条控件

    1下载:
  2. 从CWnd继承,完全自绘的滚动条控件,接口和CScrollBar完全一致-Inherited from CWnd, completely self-painted scroll bar controls, exactly the same interface and CScrollBar
  3. 所属分类:对话框与窗口

    • 发布日期:2016-01-26
    • 文件大小:54272
    • 提供者:Jason
  1. shape

    0下载:
  2. 用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.
  3. 所属分类:Console

    • 发布日期:2017-03-27
    • 文件大小:20207
    • 提供者:scorpioc
  1. 6.16-虚继承

    0下载:
  2. 此程序展示了C++得虚继承特性 源代码是老师所推荐 规范高效的代码-display in a virtual C source code inherited characteristics recommended by teachers norms efficient code
  3. 所属分类:Communication

    • 发布日期:2017-04-12
    • 文件大小:1235
    • 提供者:zhong558247
  1. C++白老师课堂

    0下载:
  2. 详细示范了类与继承这一章知识的例题,对入门同学有指导作用(Demonstrated examples of class and inheritance)
  3. 所属分类:其他

    • 发布日期:2017-12-20
    • 文件大小:2048
    • 提供者:sdnuzwk
  1. 类继承,构造函数,newint,阶乘实例

    0下载:
  2. 这是我练习时的一个实例,希望能对初学的人有用,有问题可以联系联系我。(this is a intance of my practices,i wish it will hepful to the people who are in learning c++,thanks!)
  3. 所属分类:Windows编程

    • 发布日期:2017-12-26
    • 文件大小:1024
    • 提供者:Kingtao
  1. Vbnet 写一个继承Panel的类

    0下载:
  2. 类继承,用于VB NET平台,自己写的,好用,值得参考(Class inheritance, for VB NET platform, written by yourself, easy to use, it is worth considering)
  3. 所属分类:.net编程

    • 发布日期:2017-12-27
    • 文件大小:66560
    • 提供者:CBJ199388
  1. teacher

    0下载:
  2. 用c++编写的课堂大作业。使用继承的知识,教师类。(Written with c++ classroom big homework. Using inherited knowledge; a teacher class.)
  3. 所属分类:其他

    • 发布日期:2017-12-31
    • 文件大小:1203200
    • 提供者:yingying11
  1. 公共继承

    0下载:
  2. 在main函数中通过new实例化ChildLabourer类的对象,并通过该对象调用worker及children类中的成员函数,最后销毁该对象,体会多继承的继承特性及构造函数及析构函数的执行顺序。(Through the new object instantiation of class ChildLabourer in the main function, and the function of the object and call the worker member of the chi
  3. 所属分类:Windows编程

  1. 虚继承

    0下载:
  2. 定义ChildLabourer童工类,公有继承工人类和儿童类,从而形成菱形继承关系 在main函数中通过new实例化ChildLabourer类的对象,并通过该对象调用Person,Worker及Children类中的成员函数,最后销毁该对象,掌握多重继承,多继承,虚继承的定义方法。(Defines the ChildLabourer child class, the public successor worker, the human and the child class, thus fo
  3. 所属分类:Windows编程

  1. 继承

    0下载:
  2. 子类对父类的覆盖,向上转型,子类的继承。(The subclass is overlaid with the parent class, and the subclass is inherited.)
  3. 所属分类:其他

    • 发布日期:2018-01-06
    • 文件大小:4096
    • 提供者:悟世伤时
  1. 3

    0下载:
  2. 北邮 计算机学院 第三次作业 代码 继承与多态(BUPT Java elective third operation)
  3. 所属分类:其他

  1. MultiInheritance

    0下载:
  2. int main() { cout<<"类的多重继承演示"<<endl; CDateTimeType dt(1,1,2008,11,12,12); //直接使用DateTimeType构造函数设置日期时间 cout<<"调用CDateTimeType类构造函数设定的初始日期、时间为:"<<endl; dt.display();//显示时间日期 dt.SetDate(8,8,2008);
  3. 所属分类:Windows编程

    • 发布日期:2018-04-30
    • 文件大小:1769472
    • 提供者:嗯嗯嗯嗯哦
« 12 3 4 5 6 7 8 9 10 ... 50 »
搜珍网 www.dssz.com