问一个java编程问题:定义一个矩形类(Rectangle)

日期:2017-09-05 20:22:44 人气:1

问一个java编程问题:定义一个矩形类(Rectangle)

public class Rectangle { // top, left 左上角那个顶点的坐标 // width: 宽 // heigth: 长 private double top, left, width, height; // 构造函数 public Rectangle(double top, double left, double width, double heigh
    A+
热门评论