设计一个名为Colorable的接口,其中有名为howToColor()的void方法。要求可着色对象的每个类必须实现Colorable接口。设计一个继承Shape类并实现Colorable接口的名为...
时间: 2024-03-26 21:34:13 浏览: 72
JAVA可着色接口Colorable
好的,根据您提供的要求,我来设计一个符合要求的类。
```java
// 定义Colorable接口
public interface Colorable {
void howToColor();
}
// 定义实现了Colorable接口的类
public class ColoredShape implements Colorable {
private String color;
private Shape shape;
public ColoredShape(String color, Shape shape) {
this.color = color;
this.shape = shape;
}
@Override
public void howToColor() {
System.out.println("Color the " + shape.getName() + " with " + color + " paint.");
}
// 另外提供一些其他的方法
public double getArea() {
return shape.getArea();
}
public double getPerimeter() {
return shape.getPerimeter();
}
}
// 定义Shape类
public abstract class Shape {
public abstract double getArea();
public abstract double getPerimeter();
public abstract String getName();
}
// 定义一个具体的形状类
public class Rectangle extends Shape {
private double width;
private double height;
public Rectangle(double width, double height) {
this.width = width;
this.height = height;
}
@Override
public double getArea() {
return width * height;
}
@Override
public double getPerimeter() {
return 2 * (width + height);
}
@Override
public String getName() {
return "rectangle";
}
}
```
这个类叫做ColoredShape,它继承自Shape类,并实现了Colorable接口。在ColoredShape类中,我们可以封装一个Shape对象和一个表示颜色的字符串,然后实现howToColor()方法,指定如何对这个形状进行着色。同时,提供了一些其他的方法,比如获取形状的面积和周长。
在这个例子中,我们以矩形为例来实现Shape类,但是我们可以根据需要来实现其他的形状类,并在ColoredShape类中使用它们。
阅读全文