第九周上机练习
Posted bluebless
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第九周上机练习相关的知识,希望对你有一定的参考价值。
1、定义一个点类Point,包含2个成员变量x、y分
别表示x和y坐标,2个构造器Point()和Point(int
x0,y0),以及一个movePoint(int dx,int dy)方法实
现点的位置移动,创建两个Point对象p1、p2,分
别调用movePoint方法后,打印p1和p2的坐标。[
必作题]
package jius; public class point { private int x; private int y; public point (){ } public point (int x0,int y0){ x=x0; y=y0; } public void movePoint(int dy,int dx){ int xx=dx+x; int yy=dy+y; System.out.println("坐标为"+"("+xx+","+yy+")"); } }
package jius; public class text { public static void main(String[] args) { // TODO Auto-generated method stub point p1=new point(0,0); point p2=new point(1,1); p1.movePoint(5, 2); p2.movePoint(2, 5); } }
2、定义一个矩形类Rectangle:(知识点:对象的
创建和使用)[必做题]
• 2.1 定义三个方法:getArea()求面积、getPer()求
周长,showAll()分别在控制台输出长、宽、面积
、周长。
• 2.2 有2个属性:长length、宽width
• 2.3 通过构造方法Rectangle(int width, int length),
分别给两个属性赋值
• 2.4 创建一个Rectangle对象,并输出相关信息
package mianxdx; public class Rectangle { int length; int width; public Rectangle(){ } public Rectangle(int widthk,int lengthc){ width=widthk; length =lengthc; } public void showAll() { System.out.println("length="+length); System.out.println("width="+width); } public void getArea() { int area=length*width; System.out.println("面积为"+area); } public void getPer() { int per= 2*(length+width); System.out.println("周长为"+per); } }
package mianxdx; public class test { public static void main(String[] args) { // TODO Auto-generated method stub Rectangle r=new Rectangle(5,6); r.getPer(); r.getArea(); r.showAll(); } }
• 3、定义一个笔记本类,该类有颜色(char)和cpu
型号(int)两个属性。 [必做题]
• 3.1 无参和有参的两个构造方法;有参构造方法可
以在创建对象的同时为每个属性赋值;
• 3.2 输出笔记本信息的方法
• 3.3 然后编写一个测试类,测试笔记本类的各个
方法。
package lianxi; public class noteBook { String colour; int xinghao; public noteBook(){ } public noteBook(String ys,int xh){ colour=ys; xinghao=xh; } public void ys() { System.out.println("笔记本的颜色是"+colour); } public int xh() { return xinghao; } public void out() { System.out.println("型号是"+xh()); } }
package lianxi; public class test1 { public static void main(String[] args) { // TODO Auto-generated method stub noteBook nb=new noteBook("绿色",11); nb.ys(); nb.xh(); nb.out(); } }
6、定义两个类,描述如下: [必做题]
• 6.1定义一个人类Person:
• 6.1.1定义一个方法sayHello(),可以向对方发出
问候语“hello,my name is XXX”
• 6.1.2有三个属性:名字、身高、年龄
• 6.1.3通过构造方法,分别给三个属性赋值
• 6.2定义一个Constructor类:
• 6.2.1创建两个对象,分别是zhangsan,33岁,
1.73;lishi,44,1.74
• 6.2.2分别调用对象的sayHello()方法。
package lianxi; public class Person { double tall; String name; int age; public Person(){ } public Person(double sheng,String n,int yy){ tall=sheng; name=n; age=yy; } public void sayHello() { System.out.println("hello,my name is"+name); } public void show() { System.out.println("姓名 "+name); System.out.println("身高 "+tall); System.out.println("年龄 "+age); } }
package lianxi; public class personCrate { public static void main(String[] args) { // TODO Auto-generated method stub Person p=new Person(1.75,"张三",55); Person p2=new Person(1.85,"李四",54); p.sayHello(); p.show(); p2.sayHello(); p2.show(); } }
以上是关于第九周上机练习的主要内容,如果未能解决你的问题,请参考以下文章