我对 Java 中的匿名类有点迷茫,我已经阅读过它们,但是我该如何使用这个类:
private abstract class CustomRectangle {
protected final int width;
protected final int height;
protected final int xOffset;
protected final int yOffset;
protected final int borderSize;
public CustomRectangle(final int width, final int height, final int xOffset, final int yOffset, final int borderSize) {
this.width = width;
this.height = height;
this.xOffset = xOffset;
this.yOffset = yOffset;
this.borderSize = borderSize;
}
abstract void inBorder(final int dx, final int dy);
abstract void outBorder(final int dx, final int dy);
public void draw(Graphics2D g2d) {
for (int x = 0; x < width; x++) {
for (int y = 0; y < height; y++) {
int dx = Math.min(x, width - 1 - x);
int dy = Math.min(y, height - 1 - y);
if (dx < borderSize || dy < borderSize) {
inBorder(dx, dy);
}
else {
outBorder(dx, dy);
}
g2d.drawLine(x + xOffset, y + yOffset, x + xOffset, y + yOffset);
}
}
}
}
在另一种方法中同时执行以下操作:
- 扩展 CustomRectangle 以覆盖 InBorder() 和 outBorder()
- 通过调用 draw() 方法绘制新的 CustomRectangle。
必须有一种简单的方法来做到这一点,而且我不想每次我想绘制一个 CustomRectangle 时都制作大量的类。
帮助表示赞赏:)
编辑包括解决方案:
new CustomRectangle(CARD_DIMENSION.width, CARD_DIMENSION.height, 0, 0, 5) {
@Override
public void inBorder(final int dx, final int dy) {
g2d.setColor(new Color(red, green, blue, 255 - Math.min(dx, dy)));
}
@Override
public void outBorder(final int dx, final int dy) {
g2d.setColor(new Color(red, green, blue, 192 - Math.min(dx, dy)));
}
}.draw(g2d);
也许它看起来不那么漂亮,但它在我的应用程序设计中非常方便。