搜索资源列表
Java2 类库
- 本书由Java技术的创建者编写,对Java 2平台标准版,V1.2中新增加的包及类进行了描述。本书主要由包概述和类描述构成。包概述对每个包及其所有类进行了简要描述,另外还画出了包中的类的继承层次结构示意图。每个类描述都独自构成一个小节,包含了类层次结构示意图、类描述、类示例、成员概述以及那些在版本1.2中作了修改或新增的类成员的描述。还详细说明了Java软件开发包(JDK)1.1到从版本1.2对类及方法所作的修改。需要指出的是:本书是补充版本,有些材料需要参阅《The Java Class Li
Example005-继承窗体的设计
- 设计一个窗体,能够继承其他窗体所包含的类及控件。-a Form Design, to inherit other forms included in the categories and controls.
例7.01 继承Thread类创建线程
- Thread 类创建线程,这对开发线程较有用-Thread category created threads, thread on the development of more useful
继承和子类实例
- 有关java继承和子类的实例.有助于学习者参考和练习-the inheritance and child class examples. Reference and help learners practice
wanEdit
- TEdit输入控制继承类 只能输入十六进制的ASCII字符-TEdit control of the importation of succession can only import category hexadecimal characters in the ASCII
Java2类库
- JAVA 说明文档中文版 很详细 本书由Java技术的创建者编写,对Java 2平台标准版,V1.2中新增加的包及类进行了描述。本书主要由包概述和类描述构成。包概述对每个包及其所有类进行了简要描述,另外还画出了包中的类的继承层次结构示意图。每个类描述都独自构成一个小节,包含了类层次结构示意图、类描述、类示例、成员概述.-JAVA documented in great detail the Chinese version of the book by Java technology of t
CNetwork
- 作者创建了CNetwork及及其继承类CNetSearch,通过使用CNetSearch类的IsServer和GetRemoteName等方法,可以完成列举局域网中的所有计算机的计算机名。该类使用简单,具体看源代码。-author and the creation of its successor CNetwork CNetSearch category, through the use of the category CNetSearch GetRemoteName IsServer and
superlistctrl
- listctrl继承类,树形listctrl控件-listctrl succession category tree listctrl Controls
继承2
- java中继承类的介绍-inherit introductory class
PointList
- cpoint的链表类的继承类,重写了其中的增加查找等函数,增加了直线拟合方面的函数。
toolbar
- 一个实用的 CToolBar 扩展类 CToolBarEx。程序中的工具条是在CMainFrame中生成的,采用的类是CToolBar,使用起来很复杂。为此,对CToolBar的常用功能进行封装,生成了它的一个继承类CToolBarEx,大大简化了操作。
button
- 透明按钮 cbutton继承类,加入到工程中即可使用
C++类的多重继承
- C++类的多重继承,显示日期时间源代码。
分别定义图形类Shape(抽象基类)
- 分别定义图形类Shape(抽象基类),继承类矩形类Rectangle、正方形类Square、 圆形类Circle;并且计算周长和面积。在另一个main函数中分别创建矩形、 正方形和圆形对象,设置所需的属性值,打印其周长和面积。(备注:只要把该文件解压,把里面的东东COPY去即可使用)-Graphics categories are defined Shape (abstract base class), the succession of quasi-rectangular type R
类继承与对象复制的细节
- 简单的将类继承和对象复制的细节进行简单的 描述以供大家一起学习。(Some details about class inheritance and object replication are described.)
Vbnet 写一个继承Panel的类
- 类继承,用于VB NET平台,自己写的,好用,值得参考(Class inheritance, for VB NET platform, written by yourself, easy to use, it is worth considering)
公共继承
- 在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
虚继承
- 定义ChildLabourer童工类,公有继承工人类和儿童类,从而形成菱形继承关系 在main函数中通过new实例化ChildLabourer类的对象,并通过该对象调用Person,Worker及Children类中的成员函数,最后销毁该对象,掌握多重继承,多继承,虚继承的定义方法。(Defines the ChildLabourer child class, the public successor worker, the human and the child class, thus fo
继承
- 子类对父类的覆盖,向上转型,子类的继承。(The subclass is overlaid with the parent class, and the subclass is inherited.)
Java类的设计
- 假定根据学生的3门学位课程的分数决定其是否可以拿到学位,对于本科生,如果3门课程的平均分数超过60分即表示通过,而对于研究生,则需要平均超过80分才能够通过。根据上述要求,请完成以下Java类的设计: (1)设计一个基类Student描述学生的共同特征。 (2)设计一个描述本科生的类Undergraduate,该类继承并扩展Student类。 (3)设计一个描述研究生的类Graduate,该类继承并扩展Student类。 设计一个测试类StudentDemo,分别创建本科生