在Java集合框架中,装饰器模式(Decorator Pattern)是一种结构型设计模式,它允许你在不修改原始类的情况下,动态地给对象添加新的功能。装饰器模式通过创建一个包装对象,也就是装饰器,来包装原始对象,并在保持接口一致性的同时,为原始对象添加新的行为或责任。
下面是一个简单的例子,展示了如何使用Java集合框架中的装饰器模式:
public interface Component {
void operation();
}
public class ConcreteComponent implements Component {
@Override
public void operation() {
System.out.println("ConcreteComponent operation");
}
}
public abstract class Decorator implements Component {
protected Component component;
public Decorator(Component component) {
this.component = component;
}
@Override
public void operation() {
component.operation();
}
}
public class ConcreteDecoratorA extends Decorator {
public ConcreteDecoratorA(Component component) {
super(component);
}
@Override
public void operation() {
System.out.println("ConcreteDecoratorA before operation");
super.operation();
System.out.println("ConcreteDecoratorA after operation");
}
}
public class ConcreteDecoratorB extends Decorator {
public ConcreteDecoratorB(Component component) {
super(component);
}
@Override
public void operation() {
System.out.println("ConcreteDecoratorB before operation");
super.operation();
System.out.println("ConcreteDecoratorB after operation");
}
}
public class Main {
public static void main(String[] args) {
Component component = new ConcreteComponent();
component = new ConcreteDecoratorA(component);
component = new ConcreteDecoratorB(component);
component.operation();
}
}
在这个例子中,ConcreteComponent
是原始对象,ConcreteDecoratorA
和 ConcreteDecoratorB
是具体装饰器。通过使用装饰器模式,我们可以在运行时动态地为 ConcreteComponent
添加新的功能,而无需修改其源代码。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。