what is the difference between the Adapter Pattern and Proxy Patterns?its seems both are almost similar?



what is the difference between the Adapter Pattern and Proxy Patterns?its seems both are almost simi..

Answer / ravis190784

Comparing Adapter Pattern with other Patterns:

1. Adapter converts one interface to another, Decorator doesn't alter interface but adds responsibility. Facade makes an interface simpler.
Decorator is thus more transparent to the application than an adapter is. As a consequence, Decorator supports recursive composition, which isn't possible with pure Adapters.

2. Adapters allows client to make use of libraries and subsets without changing any code. Decorators allow new behaviour to be added to the classes with out altering the existing code.

3. Adapter make things work after they're designed, Bridge makes them work before they are.

4. Bridge is designed up-front to let the abstraction and the implementation vary independently. Adapter is retrofitted to make unrelated classes work together.

5. Adapter provides a different interface to its subject. Proxy provides the same interface. Decorator provides an enhanced interface.

6. Facade defines a new interface, whereas Adapter reuses an old interface. Remember that Adapter makes two existing interfaces work together as opposed to defining an entirely new one.

Is This Answer Correct ?    16 Yes 3 No

Post New Answer

More Design Patterns Interview Questions

what is the difference between the Adapter Pattern and Proxy Patterns?its seems both are almost similar?

1 Answers   RBS,


Is dependency injection a design pattern?

0 Answers  


what is design patterns? which design patterns mostly used in .net? How it is used with examples?

1 Answers   IBM, Satyam,


What are creational design patterns?

0 Answers  


What is your research methodology?

1 Answers  


What three types of components comprise an application design?

1 Answers  


i have file(ps),dont know how many records are there. move half of the records to 2 files. how can we do

1 Answers   IBM, Infosys,


What is singleton design pattern

1 Answers   CSS, Dimdim, Fulcrum Logic, TCS, Wipro,


What is aop design?

0 Answers  


Explain Internal Style Sheets?

1 Answers  


What tools do you use for Prototyping?

3 Answers  


Why have we declared the instance reference volatile?

0 Answers  


Categories