1. 程式人生 > >12.10作業

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();

}