第十二周作业

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

package 类构造器;

public class Point {
    int x;
    int y;
    public Point(){
        
    }
    public Point(int x0, int y0) {
        super();
        this.x = x0;
        this.y= y0;
    }
    public void movePoint(int dx,int dy){
        this.x =x+dx;
        this.y =y+dy;
    }
    public static void main(String[] args){
        Point p1=new Point(1,2);
        Point p2=new Point(5,2);
        p1.movePoint(2,3);
        p2.movePoint(4, 5);
        System.out.println("移动前的坐标是(1,2)");
        System.out.println("移动后的坐标是("+p1.x +","+p1.y+")" );
        System.out.println("移动前的坐标是(5,2)");
        System.out.println("移动后的坐标是("+p2.x +","+p2.y+")" );
    }

}

2.、定义一个矩形类Rectangle: (知识点: 对象的创建和使用)[必做题]
2.1 定义三个方法: getArea(求面积、getPer0求周长,showAll0分 别在控制台输出长、宽、面积周长。
2.2 有2个属性:长length、 宽width
2.3 通过构造方法Rectangle(int width, int length),分别给两个属性赋值
2.4 创建-个Rectangle对象, 并输出相关信息

package 类构造器;

public class Rectangle {
    int width;
    int length;
    
    public Rectangle(int width, int length) {
        super();
        this.width = width;
        this.length = length;
    }
    
    public int getArea(int width, int length){
        return width*length;
    }
    
    public int getPer(int width, int length){
        return (width+length)*2;
    }
    
    public void showAll(){
        System.out.println("矩形的长是"+length+"宽是"+width+"面积是"+width*length+"周长是"+(width+length)*2);
    }
    public static void main(String[] args){
        Rectangle a = new Rectangle(1, 2);
        a.showAll();
    }

}

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

package 类构造器;

public class computer {
    char colour;
    int cpu;
    
    public computer(char colour, int cpu) {
        super();
        this.colour = colour;
        this.cpu = cpu;
    }

    public computer() {
        super();
    }

    public void show(){
        System.out.println("该笔记本的颜色是"+colour+"型号是"+cpu);
    }
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        computer a=new computer();
        a.colour ='红';
        a.cpu =685;
        a.show();

    }
}

posted @ 2021-05-22 19:36  请叫我妖玉大侠  阅读(60)  评论(0编辑  收藏  举报