搜索资源列表
JTreeTable
- A subclass of JTable, this class can render data from a TreeTableModel.-J, this class can render data from a TreeTableMode l.
FileSystemModel
- A model of the local file system, implemented as a concrete subclass of AbstractTreeTableModel. This class implements the TreeTableModel interface. -A model of the local file system. implemented as a concrete subclass of Abstract TreeTableModel. Th
AnalyzerTest
- 一个基于Lucene的Analyzer类详细信息查看程序,包括了Lucene内建的四个Analyzer子类。-Lucene Analyzer category of detailed information check procedures Lucene including the built-in four Analyzer subclass.
Test2
- 创建四个类,分别为Employee类、SalariedEmplyee类、HourlyEmployee类和CommissionEmployee类。其中Employee类是其他三个类的父类。Employee类包含姓名和身份证号。除此之外,SalariedEmployee类还应包含每月工资;HourlyEmployee类还应包含每小时工资数和工作时间数;CommissionEmployee还应包含提成比例和销售总额。每个类都应有合适的构造方法、数据成员的设置和读取方法。编写一个应用程序,创建这些类的对
Java编程测试源代码
- 一个简单的例子,在它里面用到一个Factory类. 假设规定名字的输入格式可以是: fisrtname lastname lastname,firstname 我们需要一个父类Namer,Namer中有字符串类型的成员: frName与lsName,有成员函数getFrname() 和getLsname(),通过继承Namer定义以上两种名字格式的子类:FirstFirst与LastFirst. Factory类提供一个函数,它根据输入的参数判断输入的名字是哪种格式,然后
java
- 编写一个Java程序,设计一个运输工具类Transport,包含的成员属性有:速度pace、载重量load;汽车类Vehicle是Transport的子类,其中包含的属性有:车轮的个数wheels和车重weight;飞机Airplane类是Transport的子类其中包含的属性有:机型enginertype和发动机数量enginers。每个类都有相关所有数据的输出方法。-Write a Java program, designing a means of transport category T
gernralSort
- 继承和多态 实验目的: 1、 掌握继承和多态的概念与实现方法 2、 掌握如何从已有的类中派生子类并继承父类 3、 掌握方法的覆盖和重载 实验内容: 设计一个通用的排序算法,作为验证,自定义学生类、矩形类,可以利用该排序算法对学生按照ID以及Name进行排序;对矩形按照面积排序。 -Inheritance and polymorphism of the experiment was: 1, inheritance and polymorphism to master t
4
- 继承的运用。子类的方法及变量的设定方法。-The use of inheritance. Subclass methods and methods of variable settings.
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
jav
- 基类Light,成员属性:瓦(int),壮态(开关,boolean)。 子类TubeLight,成员属性:瓦(int),壮态(开关,boolean),长度(int) print出来 -Base class Light, members of the property: W (int), Zhuang-state (switch, boolean). Subclass TubeLight, members of the property: W (int), Zhuang-state (sw
jcpro350
- 这是子类如何调用父类函数的例子,以及构造函数的使用-This is a subclass of how to call the parent class functions example, as well as the use of constructor
5070409579_8
- 写一个类,利用java提供的反射机制得到用户在程序运行时输入的类名,输出该类所在继承体系中的所有类中定义的方法,所有方法需按字母排序。 比如用户输入java.util.ArrayList,输出为: Methods of class java.util.ArrayList: public void add(int,Object) public boolean add(Object) public boolean addAll(int,Collection) public b
StuTest
- 声明Stu类。属性包括学号、姓名、英语成绩、数学成绩、计算机成绩和总成绩。方法包括构造方法、get方法、set方法、toString方法、equals方法、compare方法(比较两个学生的总成绩,结果分大于、小于、等于)、sum方法(计算总成绩)和testScore方法(计算评测成绩,即平均成绩)。 声明StuXW(学习委员)类为Student类的子类。在StuXW类中增加责任属性,并重写testScore方法,使得学习委员的测评成绩为平均成绩+3分。 声明StuBZ(班长)类为Stu
Example
- 继承 1. 实验目的 巩固如下概念: 子类的继承性,子类对象的创建过程,成员变量的继承与隐藏,方法的继承与重写。 2. 实验要求 (1)编写一个Java应用程序,除了主类外,该程序中还要定义4个类:People、ChinaPeople、AmericanPeople和BeijingPeople类,要求如下: People类具有访问权限是protected的double型成员:height和weight,以及public void speakHello()、
Java2
- 基类Light,成员属性:瓦(int),壮态(开关,boolean)。 子类TubeLight,成员属性:瓦(int),壮态(开关,boolean),长度(int) print出来 -Base class Light, members of the property: W (int), strong state (switch, boolean). Subclass TubeLight, members of the property: W (int), strong state
Student
- 子类 显示子类people里面的东西 年龄 性别等等 -Sub-class display subclass of people inside what age, sex, etc.
InetAddress5
- InetAddress类是Java中用于描述IP地址的类。它在java.net包中。在Java中分别用Inet4Address和Inet6Address类来描述IPv4和IPv6的地址。这两个类都是InetAddress的子类。由于InetAddress没有public的构造方法,因此,要想创建InetAddress对象,必须得依靠它的四个静态方法。InetAddress可以通过getLocalHost方法得到本机的InetAddress对象,也可以通过getByName、getAllByNam
Example
- 子类的继承,成员变量的继承与隐藏,方法的继承与重写-Subclass inheritance, inheritance and hiding member variables, methods, inheritance and override
Test
- 创建四个类,分别为Employee类、SalariedEmplyee类、HourlyEmployee类和CommissionEmployee类。其中Employee类是其他三个类的父类。Employee类包含姓名和身份证号。除此之外,SalariedEmployee类还应包含每月工资;HourlyEmployee类还应包含每小时工资数和工作时间数;CommissionEmployee还应包含提成比例和销售总额。每个类都应有合适的构造方法、数据成员的设置和读取方法。编写一个应用程序,创建这些类的对