12.10作业

面向对象

定义一个点类Point,包含2个成员变量x、y分别表示x和y坐标,
2个构造器Point()和Point(int x0,y0),以及一个movePoint(int dx,int dy)
方法实现点的位置移动
,创建两个Point对象p1、p2,分别调用movePoint方法后,打印p1和p2的坐标。在这里插入代码片

int x;
int y;
void movePoint(int dx,int dy){
	this.x = dx + 23;
	this.y = dy + 12;
}
void tostring(String a,int x,int y){
	System.out.println(a+"坐标为"+x+","+y);
}
Point(){	
}
Point(int x0,int y0){
	this();
	this.x=x0;
	this.y =y0;
}
Point p1 =new Point(1,1);
	Point p2 =new Point(2,2);
	p1.movePoint(p1.x, p1.y);
	p2.movePoint(p2.x, p2.y);
	p1.tostring("p1", p1.x, p1.y);
	p2.tostring("p2", p2.x, p2.y);

2.2、定义一个矩形类Rectangle: [必做题]
2.1 定义三个方法:getArea()求面积、getPer()求周长,showAll()分别在控制台输出长、宽、面积、周长。
2.2 有2个属性:长length、宽width
2.3 通过构造方法Rectangle(int width, int length),分别给两个属性赋值
2.4 创建一个Rectangle对象,并输出相关信息在这里插入代码片

int width;
int length;
int  getArea (){
	int Area = width*length;
	return Area;
}
int getPer(){
	int Per = width*2+length*2;
	return Per;
}
void showAll(){
	System.out.println(width);
	System.out.println(length);
	
	System.out.println(this.getArea());
	System.out.println(this.getPer());
}
 Rectangle(int width,int length) {
	this.width=width;
	this.length=length;
}
	public static void main(String[] args) {
	Rectangle R1 =new Rectangle(2, 4);
	R1.showAll();
}

3.定义一个笔记本类,该类有颜色(char)和cpu型号(int)两个属性。 [必做题]
3.1 无参和有参的两个构造方法;有参构造方法可以在创建对象的同时为每个属性赋值;
3.2 输出笔记本信息的方法
3.3 然后编写一个测试类,测试笔记本类的各个方法在这里插入代码片

	char color;
	int cpu;
	void show(){
	System.out.println("笔记本颜色为:"+color);
	System.out.println("cpu型号为:i5"+cpu);
}
Text(){
	
}
Text(char color,int cpu){
	this.color=color;
	this.cpu=cpu;
}
Scanner sc = new Scanner(System.in);
	System.out.println("请输入颜色和cpu");
	Text test = new Text(sc.nextLine().charAt(0), sc.nextInt());
	test.show();

4.4.1.1定义一4、定义两个类,描述如下: [必做题]
4.1定义一个人个方法sayHello(),可以向对方发出问候语“hello,my name is XXX”
4.1.2有三个属性:名字、身高、体重
4.2定义一个PersonCreate类:
4.2.1创建两个对象,分别是zhangsan,33岁,1.73;lishi,44,1.74
4.2.2分别调用对象的sayHello()方法。在这里插入代码片

String name;
int high;
int wigth;
int age;
void sayHello(){
	System.out.println("hello,my name is "+name+" "+"身高:"+high+"年龄"+age);
}
public static void main(String[] args) {
	Hello zhang = new Hello();
	
	zhang.name="张三";
	zhang.age=33;
	zhang.high=173;
	zhang.sayHello();
	
	Hello li = new Hello();
	li.name="李四";
	li.age=33;
	li.high=173;
	li.sayHello();

}

猜你喜欢

转载自blog.csdn.net/weixin_43986021/article/details/84949489