⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rectangle.java

📁 苏州大学java学习的ppt课件
💻 JAVA
字号:
public class Rectangle {    public int width = 0;    public int height = 0;    public Point origin;    // four constructors    public Rectangle() {	origin = new Point(0, 0);    }    public Rectangle(Point p) {	origin = p;    }    public Rectangle(int w, int h) {	this(new Point(0, 0), w, h);    }    public Rectangle(Point p, int w, int h) {	origin = p;	width = w;	height = h;    }    // a method for moving the rectangle    public void move(int x, int y) {	origin.x = x;	origin.y = y;    }    // a method for computing the area of the rectangle    public int area() {	return width * height;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -