Difference between Decorator pattern and Delegation pattern

懵懂的女人 提交于 2019-12-18 12:12:45

问题


What is the difference between Decorator pattern and Delegation pattern (if there is any) ? I don't want to know just about implementation details but also about use case differencies and subjective point of view how to use them.

  • Decorator pattern
  • Delegation pattern

EDIT : Can you point to source code (in OS project) where these pattern (especially Delegation, because Decoration is used in Java IO classes) are used. I'm looking for some real usage not just dummy example. Maybe these patterns are the same differs only in title. Feel free to write this opinion.


回答1:


Decorator uses Delegation, but in a very specific way.

Delegation (or composition) is not as much a pattern as a general way to build complex behavior by coordinating use of several other objects. It's often used in a set or static way. By "set or static" I mean something like this:

class Delegator {
  private final ClassA a = new ClassA();
  private final ClassB b = new ClassB();

  public void doWork() {
     a.setup();
     final ResFromA resa = a.getRes();
     b.setup();
     b.consume(resa);
  }

}

Note that Delegator does not share any type or interface with either ClassA or ClassB, and knows the exact type of both a and b.

Decorator is a dynamic way to use delegation to add behavior to a logical entity at runtime. In Decorator all entities share a common interface, and use delegation to concatenate their work.

public interface Item {
  public void drawAt(final int x, final int y);
}

public class CircleAround implements Item {
  private final Item wrapped;
  private final int radius;

  public CircleAround(public final Item wrapped, public final int radius) {
    this.wrapped = wrapped;
    this.radius = radius;
  }

  public void drawAt(final int x, final int y) {
    // First handle whatever we are wrapping
    wrapped.drawAt(x,y);
    // Then add our circle
    Graphics.drawCircle(x, y, radius);
  }

}

Note that unlike the first example, CircleAround does not know the exact type of the item that it wraps, and shares a common interface with it.




回答2:


I think that 'Delegation Pattern' would fail the litmus test of what is or is not a pattern pretty clearly. For example, people still say 'I know the Factory Pattern' all the time. There is no Factory pattern. That's an idiom (cf. Advanced C++ by James Coplien). That page is pretty weak too; I don't see simple delegation as an inversion of responsibility.

Decorator is used when the code being decorated must be augmented. The Decorator wraps itself around the decoratee and still calls its methods, it just does stuff before or after. This is one of the reasons you see people talking about Decorator quite a lot when Aspects come up: it's a pattern that relies on intermediation, not cooperation, with its cohort. (This is also why in many cases, e.g. when you don't have the source, you must use a Decorator.)

Decorator works best when you want to take something that's working and have it do something else, but not change the interface at all. Imagine you have a Repository class that puts out an interface that has CRUD methods in it. Now you want to add caching. You can make a CachedRepository that decorates Repository and on read, it looks in the cache, if it's not there, then it would call the regular repository method, otherwise, it can just return the cached copy. No code was changed in the Repository class and the users of the class know nothing about the caching.



来源:https://stackoverflow.com/questions/13389544/difference-between-decorator-pattern-and-delegation-pattern

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!