What is the difference between the Facade and Adap

2019-03-08 00:12发布

I've been reading both definitions and they seem quite the same. Could anyone point out what are their differences?

Thanks

13条回答
ら.Afraid
2楼-- · 2019-03-08 00:26

Facade:

Key takeaways : ( from journaldev article by Pankaj Kumar)

  1. Facade pattern is more like a helper for client applications
  2. Facade pattern can be applied at any point of development, usually when the number of interfaces grow and system gets complex.
  3. Subsystem interfaces are not aware of Facade and they shouldn’t have any reference of the Facade interface
  4. Facade pattern should be applied for similar kind of interfaces, its purpose is to provide a single interface rather than multiple interfaces that does the similar kind of jobs

Facade class diagram:

enter image description here

Adapter:

  1. It is a structural pattern
  2. It is useful to work with two incompatible interfaces
  3. It makes things work after they're designed

Class diagram of Adapter:

enter image description here

You can find more details about Adapter in this SE post:

Difference between Bridge pattern and Adapter pattern

Key differences:

  1. Facade defines a new interface, whereas Adapter uses an old interface. Adapter makes two existing interfaces work together as opposed to defining an entirely new one
  2. Adapter and Facade are both wrappers; but they are different kinds of wrappers. The intent of Facade is to produce a simpler interface, and the intent of Adapter is to design to an existing interface

Have a look at sourcemaking article too for better understanding.

查看更多
看我几分像从前
3楼-- · 2019-03-08 00:27

Adapter pattern allows two,previously incompatible, interfaces to work with each other. Has 2 separate interfaces in play.

The Facade pattern takes a known interface, that is low level/fine grained, and wraps it with a higher level/course grained interface. Has a single interface, that has been simplified by wrapping with another.

查看更多
霸刀☆藐视天下
4楼-- · 2019-03-08 00:27

Adapter makes two interfaces work together.

Facade exposes a single class to a higher, and more limited level. For example, a view model facade may only expose certain read only properties of a lower level class.

查看更多
Viruses.
5楼-- · 2019-03-08 00:27

Having read all this, I have to say that the purpose of a

facade is simplicity

adapter is interoperability.

查看更多
Bombasti
6楼-- · 2019-03-08 00:28

Adapter == making a square peg fit into a round hole.

Facade == a single control panel to run all the internal components.

查看更多
Rolldiameter
7楼-- · 2019-03-08 00:30

The Facade Pattern wiki page has a brief note about this.

"An Adapter is used when the wrapper must respect a particular interface and must support a polymorphic behavior. On the other hand, a facade is used when one wants an easier or simpler interface to work with."

I heard an analogy that you should think of your universal remote control that you've set up to work with all your different stereo systems - you press "on" and it turns on your cable box, your receiver, and your TV. Maybe it's a really fancy home theater and it dims the lights and draws the shades too. That's a Facade - one button/function that takes care of a more complicated set of steps.

The Adapter pattern just links two incompatible interfaces.

EDIT: A quick analogy for the Adapter pattern (based on the comments) might be something like a DVI-to-VGA adapter. Modern video cards are often DVI, but you've got an old VGA monitor. With an adapter that plugs into your video card's expected DVI input, and has its own VGA input, you'll be able to get your old monitor working with your new video card.

查看更多
登录 后发表回答