top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is Facade Design Pattern?

+2 votes
322 views
What is Facade Design Pattern?
posted Dec 30, 2016 by Jdk

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

The facade pattern (or façade pattern) is a software design pattern commonly used with object-oriented programming. The name is by analogy to an architectural facade. A facade is an object that provides a simplified interface to a larger body of code, such as a class library.

Facade pattern hides the complexities of the system and provides an interface to the client using which the client can access the system. This type of design pattern comes under structural pattern as this pattern adds an interface to existing system to hide its complexities

answer Jan 7, 2017 by Pramod Huilgol
...