1、定义一个点类Point,包含2个成员变量x、y分
别表示x和y坐标,2个构造器Point()和Point(int
x0,y0),以及一个movePoint(int dx,int dy)方法实
现点的位置移动,创建两个Point对象p1、p2,分
别调用movePoint方法后,打印p1和p2的坐标。[
必作题]
public class Point {
/*
* 定义一个点类Point,包含2个成员变量x、y分 别表示x和y坐标,2个构造器Point()和Point(int
* x0,y0),以及一个movePoint(int dx,int dy)方法实 现点的位置移动
*/
int x;
int y;
Point() {
}
Point(int x0, int y0) {
this.x = x0;
this.y = y0;
}
public void movePoint(int dx, int dy) {
this.x += x;
this.y += y;
System.out.println("坐标" + this.x + "," + this.y);
}
}
public class TestPoint {
public static void main(String[] args) {
// TODO Auto-generated method stub
// 创建两个Point对象p1、p2,分别调用movePoint方法后,打印p1和p2的坐标。
Point p1 = new Point(1, 1);
Point p2 = new Point(4, 5);
p1.movePoint(p2.x, p2.y);
}
}
2、定义一个矩形类Rectangle:(知识点:对象的
创建和使用)[必做题]
• 2.1 定义三个方法:getArea()求面积、getPer()求
周长,showAll()分别在控制台输出长、宽、面积
、周长。
• 2.2 有2个属性:长length、宽width
• 2.3 通过构造方法Rectangle(int width, int length),
分别给两个属性赋值
• 2.4 创建一个Rectangle对象,并输出相关信息
public class Rectangle {
/*
* 定义一个矩形类Rectangle:(知识点:对象的创建和使用)
* 定义三个方法:getArea()求面积、getPer()求周长,showAll()分别在控制台输出长、宽、面积、周长。
* 有2个属性:长length、宽width
* 通过构造方法Rectangle(int width, int length),分别给两个属性赋值
*/
private int length;
private int width;
Rectangle(int length, int width) {
this.length = length;
this.width = width;
}
public void showAll() {
System.out.println("矩形长为:" + length + " " + "矩形的宽为:" + width + " " + "矩形的面积为:" + getArea() + " " + "矩形的周长为:"
+ getPer());
}
public int getPer() {
return 2 * (length + width);
}
public int getArea() {
return length * width;
}
}
class RectangleDemo {
public static void main(String[] args) {
Rectangle r = new Rectangle(2, 3);
r.showAll();
}
}
• 3、定义一个笔记本类,该类有颜色(char)和cpu
型号(int)两个属性。 [必做题]
• 3.1 无参和有参的两个构造方法;有参构造方法可
以在创建对象的同时为每个属性赋值;
• 3.2 输出笔记本信息的方法
• 3.3 然后编写一个测试类,测试笔记本类的各个
方法。
public class NoteBook {
/*
* 定义一个笔记本类,该类有颜色(char)和cpu型号(int)两个属性。
* 无参和有参的两个构造方法;有参构造方法可以在创建对象的同时为每个属性赋值
* 输出笔记本信息的方法
*然后编写一个测试类,测试笔记本类的各个方法。
*/
char color;
int model;
NoteBook () {
}
NoteBook (char color, int model) {
this.color = color;
this.model = model;
}
void a() {
System.out.println("颜色:" + color + " 型号:" + model);
}
public static void main(String[] args) {
NoteBook a = new NoteBook ('a', 9527);
a.a();
}
}
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()方法。
public class Constructor {
public static void main(String[] args) {
// TODO Auto-generated method stub
/*
* 定义一个Constructor类 创建两个对象,分别是zhangsan,33岁,1.73;lishi,44,1.74
* 分别调用对象的sayHello()方法。
*/
Person zhangsan = new Person();
zhangsan.name = "zhangsan";
zhangsan.height = 1.73;
zhangsan.age = 33;
Person lishi = new Person();
lishi.name = "lishi";
lishi.height = 1.74;
lishi.age = 44;
zhangsan.sayHello();
lishi.sayHello();
}
}
public class Person {
/*
* 定义一个人类Person 定义一个方法sayHello(),可以向对方发出问候语“hello,my name is XXX”
* 有三个属性:名字、身高、年龄 通过构造方法,分别给三个属性赋值
*/
String name;
double height;
int age;
void sayHello() {
System.out.println("hello,my name is " + name + " " + height + "m" + " " + age + "岁");
}
}