搜索资源列表
Test2
- 创建四个类,分别为Employee类、SalariedEmplyee类、HourlyEmployee类和CommissionEmployee类。其中Employee类是其他三个类的父类。Employee类包含姓名和身份证号。除此之外,SalariedEmployee类还应包含每月工资;HourlyEmployee类还应包含每小时工资数和工作时间数;CommissionEmployee还应包含提成比例和销售总额。每个类都应有合适的构造方法、数据成员的设置和读取方法。编写一个应用程序,创建这些类的对
Test3
- 定义4个类,MyShape、MyLine、MyRectangle和MyOval,其中MyShape是其他三个类的父类。MyShape为抽象类,包括图形位置的四个坐标;一个无参的构造方法,将所有的坐标设置为0;一个带参的构造函数,将所有的坐标设置为相应值;每个坐标的设置和读取方法;abstract void draw(Graphics g)方法。MyLine类负责画直线,实现父类的draw方法;MyRectangle负责画矩形,实现父类的draw方法;MyOval负责画椭圆,实现父类的draw方法
delphi_TFrame_test
- delphi中的TFrame类使用方法示例 这个类,我们称之为TFrame框架组件,使程序开发人员能够可视化的设置一组组件,之后系统中对它进行重用。 TFrame框架有两个主要的好处: 第一、TFrame框架可大幅减少需要存储在工程中的资源量。 第二、TFrame框架允许你可视化的创建能复制和扩展的对象。 对可视化窗体继承允许你很简单的创建由继承得来的窗体。每一个框架保持它与父TFrame的关系,即对父类的改变将自动被实例继承。虽然你可以用TPanel组件达到同样的
Phone
- 编写java程序,程序中有一个父类Telephone,类中包含电话品牌、电话号码、通话时间、费率等属性,以及计算话费和显示信息等方法;程序中还有一个子类Mobilephone,除了具有Telephone类的属性外,还有自己的属性如网络类型、被叫时间,同时它有自己的计算话费和显示信息的方法。最后程序中应包含一个主类来使用上述两个类并显示它们的信息。-The program has a parent class Telephone, class contains phone brand, telep
typeof
- typeof,编译时获取表达式类型运算符,是gcc编译器的一个扩展(intel编译器 也支持). 笔者最近作一个项目时需要用比较hack的手段把第三方的dll(无lib但有头文件)里面的外部函数以函数指针的方式提取出来给其他模块作全局变量用,500多个函数呀,声明函数指针可不是个轻松事,类型名字至少排满一行,写了50多个就受不了了. 找了boost的typeof,把里面的代码大幅度简化,提炼,去掉一些依赖.请使用TYPEOF宏,无任何运行时开销。 本版本利用了vc6的1个bug(子类
Java编程测试源代码
- 一个简单的例子,在它里面用到一个Factory类. 假设规定名字的输入格式可以是: fisrtname lastname lastname,firstname 我们需要一个父类Namer,Namer中有字符串类型的成员: frName与lsName,有成员函数getFrname() 和getLsname(),通过继承Namer定义以上两种名字格式的子类:FirstFirst与LastFirst. Factory类提供一个函数,它根据输入的参数判断输入的名字是哪种格式,然后
5
- 创建一个四则运算的java类,并创建一个继承该类的一个子类,要求覆盖父类中求和的方法,并分别调用子父类中求和的方法。 包含相关代码和运行结果。-Create a java computing four categories, and create a succession of such a sub-category, the coverage demanded by the parent class summation method, and the respective sub-call
telephoneCardUser
- 声明两个接口,Show和Print,以完成通过接口实现多重继承。 构造class userInformation类作为extends的父类,其中定义f方法、g方法和showOut方法,分别实现方法的继承,重载,重写。 构造类telephoneCardUser,通过该类extends userInformation 以及implements Show,Print两个接口来实现本次实验的目的。-A statement both interfaces, Show and Print, in o
c4
- 面向对象 类与封装 子类与父类的继承 缺省函数 完整函数-Classes and object-oriented package with the parent class inherit the default function of the integrity of the function
ShapeHierarch
- 一个简单的java程序,主要是描述父类和子类继承关系的描述,适合初学者学习-A simple java program, mainly to describe the parent class and subclass inheritance descr iption for beginners to learn
src
- 子类对父类的方法进行覆盖,测试覆盖关系以及其他相关信息-Subclass of the parent class method of coverage, the relationship between test coverage
BS-Icon-Maker
- 动态按钮切换的父类,可以将按钮设为各种图片或图标,非常好用-Dynamic button to switch the parent class, the button can be set to a variety of pictures or icons, very easy to use
Session3
- 自己定义的Doughnut 类,画同心圆5,父类是圆-Doughnut their own definition of class, drawing concentric circles 5, the parent class is round
OOP_Exc
- 实现两种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
jcpro350
- 这是子类如何调用父类函数的例子,以及构造函数的使用-This is a subclass of how to call the parent class functions example, as well as the use of constructor
struts2spring3hibernate4
- struts2+spring4+hibernate4,本源码中使用了最新的jsr-303校验,还有DAO分理了父类,大部分代码只要继承父类即可-struts2+spring4+hibernate4, the source uses the latest jsr-303 checksum reason there DAO parent class, most of the code is inherited from the parent class to
Count
- (1) 设计一个程序,用于根据用户输入的命令行参数数量来计算长方形、正方形、三角形的面积。如果输入的参数为一个、二个、三个则它们应分别对应正方形、长方形、三角形,如果没有参数,则通过异常处理方法现实错误消息。(用于计算面积的方法是一个重载的方法。提示:定义一个抽象的父类,并提供一个抽象的方法area(). 再派生出三个子类,重写area()方法,然后在main方法中用多态来实现具体的面积函数的调用)。-(1) design a program based on user input for th
parant-child
- Some utilities in VC++, such as how to call functions in parent class of the same name in child class.
Example
- 继承 1. 实验目的 巩固如下概念: 子类的继承性,子类对象的创建过程,成员变量的继承与隐藏,方法的继承与重写。 2. 实验要求 (1)编写一个Java应用程序,除了主类外,该程序中还要定义4个类:People、ChinaPeople、AmericanPeople和BeijingPeople类,要求如下: People类具有访问权限是protected的double型成员:height和weight,以及public void speakHello()、
USBCOM_Parent class
- Parent class for USB/COM ports interface