摘要: public class Rectangle { public int x1; public int y1; public int x2; public int y2; public Rectangle(int x1, int y1, int x2, int y2) { this.x1 = x1; this.y1 = y1; this.x2 = ... 阅读全文
posted @ 2012-02-21 17:13 Ligeance 阅读(1241) 评论(0) 推荐(0) 编辑