|
发表于 2014-12-29 21:43:14
|
显示全部楼层
题目:创建一个类,它含有实例变量height,weight,depth。变量类型都是int型。创建一个java程序,它使用这个新类,并给对象的这些实例变量赋值,然后显示这些值。
分析题目:
1、首先是创建一个类,暂且命名为Geometry吧
2、它含有实例变量height,weight,depth,这要定义三个成员变量。同时为int类型
3、并给对象的这些实例变量赋值,然后显示这些值。这说明类中有一个show方法,来进行成员变量值得输出。
4、创建一个java程序,它使用这个新类。此时就是要写一个测试类,进行测试,
代码:
- class Geometry
- {
- private int height;
- private int weight;
- private int depth;
- Geometry(int height,int weight,int depth)
- {
- this.height = height;
- this.weight = weight;
- this.depth = depth;
- }
- public void setHeight(int height)
- {
- this.height=height;
- }
- public int getHeight()
- {
- return this.height;
- }
- public void setWeight(int weight)
- {
- this.weight = weight;
- }
- public int getWeight()
- {
- return this.weight;
- }
- public void setDepth(int depth)
- {
- this.depth = depth;
- }
- public int getDepth()
- {
- return this.depth;
- }
- public void show()
- {
- System.out.println("weight=" + this.weight + " height=" + this.height + " depth=" + this.depth);
- }
- }
- public class Test
- {
- public static void main(String args[])
- {
- Geometry geo=new Geometry(10,20,30);
- geo.show();
- }
- }
复制代码 |
|