nestedrects.java
来自「书籍"Java_面向事件编程"的附带光盘代码」· Java 代码 · 共 38 行
JAVA
38 行
import objectdraw.*;import java.awt.*;// class to draw and manipulate a collection of nested rectangles.public class NestedRects { private FramedRect outerRect; // outermost rectangle in nested rectangles private NestedRects rest; // inner nested rect // Draw nested rectangles at the given x and y coordinates and // with the given height and width (both of which must be non-negative) public NestedRects(double x, double y, double width, double height, DrawingCanvas canvas) { outerRect = new FramedRect( x, y, width, height, canvas ); if ( width >= 8 && height >= 8) { rest = new NestedRects(x+4, y+4, width-8, height-8, canvas); } else { // nothing more to construct rest = null; } } // Move nested rect to (x,y) public void moveTo(double x, double y) { outerRect.moveTo(x,y); if (rest != null) { rest.moveTo(x+4, y+4); } } // Remove the nested rect from the canvas public void removeFromCanvas() { outerRect.removeFromCanvas(); if (rest != null) { rest.removeFromCanvas(); } }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?