代理模式与装饰器模式的区别,主要大于,从使用者(客户端)的角度来看的:
//装饰器的客户
public class Client{
public static void main(String[] args){
//客户指定了装饰者需要装饰的是哪一个类
Component component = new Decorator(new ConcreteComponent());
…
}
}
//代理的客户
public class Client{
public static void main(String[] args){
//客户不知道代理委托了另一个对象
Subject subject = new Proxy();
…
}
}
代理模式与装饰器模式的区别,码迷,mamicode.com
时间: 2024-09-30 14:10:45