CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - parent class

搜索资源列表

  1. delphi_TFrame_test

    2下载:
  2. delphi中的TFrame类使用方法示例 这个类,我们称之为TFrame框架组件,使程序开发人员能够可视化的设置一组组件,之后系统中对它进行重用。 TFrame框架有两个主要的好处: 第一、TFrame框架可大幅减少需要存储在工程中的资源量。 第二、TFrame框架允许你可视化的创建能复制和扩展的对象。 对可视化窗体继承允许你很简单的创建由继承得来的窗体。每一个框架保持它与父TFrame的关系,即对父类的改变将自动被实例继承。虽然你可以用TPanel组件达到同样的
  3. 所属分类:Delphi控件源码

    • 发布日期:2012-10-18
    • 文件大小:5.22mb
    • 提供者:little_cui
  1. typeof

    0下载:
  2. typeof,编译时获取表达式类型运算符,是gcc编译器的一个扩展(intel编译器 也支持). 笔者最近作一个项目时需要用比较hack的手段把第三方的dll(无lib但有头文件)里面的外部函数以函数指针的方式提取出来给其他模块作全局变量用,500多个函数呀,声明函数指针可不是个轻松事,类型名字至少排满一行,写了50多个就受不了了. 找了boost的typeof,把里面的代码大幅度简化,提炼,去掉一些依赖.请使用TYPEOF宏,无任何运行时开销。 本版本利用了vc6的1个bug(子类
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:1.08kb
    • 提供者:朱元
  1. c4

    0下载:
  2. 面向对象 类与封装 子类与父类的继承 缺省函数 完整函数-Classes and object-oriented package with the parent class inherit the default function of the integrity of the function
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:1.57kb
    • 提供者:mmon
  1. BS-Icon-Maker

    0下载:
  2. 动态按钮切换的父类,可以将按钮设为各种图片或图标,非常好用-Dynamic button to switch the parent class, the button can be set to a variety of pictures or icons, very easy to use
  3. 所属分类:GUI Develop

    • 发布日期:2017-05-08
    • 文件大小:1.81mb
    • 提供者:hebei
  1. Session3

    0下载:
  2. 自己定义的Doughnut 类,画同心圆5,父类是圆-Doughnut their own definition of class, drawing concentric circles 5, the parent class is round
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-09
    • 文件大小:5kb
    • 提供者:刘文雯
  1. OOP_Exc

    0下载:
  2. 实现两种OOP中的排序包 一种使用comparable接口 一种自定义父类,然后对其继承 两种都是为了达到能对对象进行排序-OOP in order to achieve the two packages of a comparable interface to use a custom parent class, and then to its successor are two kinds of objects in order to attain the right sort
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-05
    • 文件大小:21.8kb
    • 提供者:LittleTony
  1. Count

    0下载:
  2. (1) 设计一个程序,用于根据用户输入的命令行参数数量来计算长方形、正方形、三角形的面积。如果输入的参数为一个、二个、三个则它们应分别对应正方形、长方形、三角形,如果没有参数,则通过异常处理方法现实错误消息。(用于计算面积的方法是一个重载的方法。提示:定义一个抽象的父类,并提供一个抽象的方法area(). 再派生出三个子类,重写area()方法,然后在main方法中用多态来实现具体的面积函数的调用)。-(1) design a program based on user input for th
  3. 所属分类:Other systems

    • 发布日期:2017-03-31
    • 文件大小:4.63kb
    • 提供者:阿豆
  1. parant-child

    0下载:
  2. Some utilities in VC++, such as how to call functions in parent class of the same name in child class.
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-30
    • 文件大小:31.25kb
    • 提供者:luking
  1. HardWork

    1下载:
  2. 上转型对象 1.实验目的 掌握上转型对象的使用。 2. 实验要求 要求有一个abstract类,类名为Employee,Employee的子类有YearWorker、MonthWorker和WeekWorker。YearWorker对象按年领取薪水,MonthWorker按月领取薪水,WeekWorker按周领取薪水。Employee有一个abstract方法: public abstract earnings() 子类必须重写父类的earnings()方法,给出各自领
  3. 所属分类:matlab

    • 发布日期:2017-04-02
    • 文件大小:3.42kb
    • 提供者:覃翠娟
  1. DlgFace

    0下载:
  2. 自绘Dialog界面,直接用做父类,统一你的界面风格哦-Dialog interface from the drawn directly used as the parent class, unified interface for your style Oh
  3. 所属分类:GUI Develop

    • 发布日期:2017-03-29
    • 文件大小:98.08kb
    • 提供者:周红波
  1. Shape

    8下载:
  2. 写一个画图小程序MiniDraw,要求画直线(Line),椭圆(Ellipse),矩形(Rectangle),多边形(Polygon)等图形元素(图元)。 每种图元需用一个类(对象)来封装,如CLine, CEllipse, CRect, CPolygon; 各种图元可从一个父类CShape来继承; 每种图元的绘制不一样,但是绘制接口在父类中是一样,因此可学习和使用类的多态性。 -Write a drawing applet MiniDraw, required drawing
  3. 所属分类:Graph Drawing

    • 发布日期:2014-08-15
    • 文件大小:1.96mb
    • 提供者:陈婉
  1. typeof_common

    0下载:
  2. typeof,编译时获取表达式类型运算符,是gcc编译器的一个扩展(intel编译器 也支持). 笔者最近作一个项目时需要用比较hack的手段把第三方的dll(无lib但有头文件)里面的外部函数以函数指针的方式提取出来给其他模块作全局变量用,500多个函数呀,声明函数指针可不是个轻松事,类型名字至少排满一行,写了50多个就受不了了. 找了boost的typeof,把里面的代码大幅度简化,提炼,去掉一些依赖.请使用TYPEOF宏,无任何运行时开销。 本版本利用了vc6的1个bug(子类
  3. 所属分类:Compiler program

    • 发布日期:2017-03-30
    • 文件大小:2.03kb
    • 提供者:朱元
  1. Managerment_System

    0下载:
  2. 人员管理示例系统,不同类型的雇员子类继承雇员父类,并且实现了自己特有的薪资计算方法。-Sample personnel management system, different types of employees subclass inherits the parent class of employees, and achieve their own unique salary calculation.
  3. 所属分类:ERP-EIP-OA-Portal

    • 发布日期:2017-04-08
    • 文件大小:3.01kb
    • 提供者:yingxuanxuan
  1. DArray

    2下载:
  2. 写一个画图小程序MiniDraw,要求画直线(Line),椭圆(Ellipse),矩形(Rectangle),多边形(Polygon)等图形元素(图元)。 每种图元需用一个类(对象)来封装,如CLine, CEllipse, CRect, CPolygon; 各种图元可从一个父类CShape来继承; 每种图元的绘制不一样,但是绘制接口在父类中是一样,因此可学习和使用类的多态性-Write a drawing applet MiniDraw, required drawing a straight
  3. 所属分类:Graph Drawing

    • 发布日期:2014-08-17
    • 文件大小:2kb
    • 提供者:fhj
  1. UDP

    0下载:
  2. 简单的UDP类和父类NETWORK 可以继承network类实现TCP类-Simple UDP class and parent class can inherit NETWORK TCP network type class implementation
  3. 所属分类:TCP/IP Stack

    • 发布日期:2017-03-30
    • 文件大小:3.08kb
    • 提供者:贾宇舟
  1. conver

    0下载:
  2. 子类和父类相互调用实例,对于新手来说不得多的-Subclass and parent class to call each instance, not for the novice and more
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-08
    • 文件大小:45.58kb
    • 提供者:王广
  1. treeaddcheckbox

    0下载:
  2. tree前加checkbox,实现tree的选择,并且选择父类后所有子类自动全部选择-tree front of the checkbox, to achieve the selection tree, and select the parent class automatically after all the selection of all sub-categories
  3. 所属分类:ComboBox

    • 发布日期:2017-04-03
    • 文件大小:350.48kb
    • 提供者:李解
  1. Prjspy

    0下载:
  2. 获取执行程序上的控件名、颜色、程序路径、父类类名等信息,非常实用。-Access control on the implementation of the program name, color, program path, the parent class class name and other information, very useful.
  3. 所属分类:GUI Develop

    • 发布日期:2017-04-03
    • 文件大小:6.31kb
    • 提供者:hxl
  1. AndroidKaifa

    0下载:
  2. 详细指导出了 android开发中应用程序组件,Activity和任务,进程和线程,组件的生命周期和调用父类-Detailed guidance on the development of the android application components, Activity and tasks, processes and threads, the component life cycle and call the parent class
  3. 所属分类:android

    • 发布日期:2017-04-04
    • 文件大小:830.19kb
    • 提供者:xyz
  1. USBCOM_Parent class

    0下载:
  2. Parent class for USB/COM ports interface
  3. 所属分类:USB编程

    • 发布日期:2017-12-25
    • 文件大小:2kb
    • 提供者:ppetr
« 12 3 4 5 »
搜珍网 www.dssz.com