Skip to content
EntityQ428170· pop 29· linked from 116 articles

facade pattern

Sign in to save

Also known as façade pattern

software design pattern that provides a simplified interface

~5 min read

Encyclopedic overview

The facade pattern (also spelled façade) is a software design pattern commonly used in object-oriented programming. Analogous to a façade in architecture, it is an object that serves as a front-facing interface masking more complex underlying or structural code. A facade can:

improve the readability and usability of a software library by masking interaction with more complex components behind a single (and often simplified) application programming interface (API)

Excerpted from Wikipedia’s “facade pattern” article, available under the CC BY-SA 4.0 licence.