davidsky69

Behavioral Patterns – Interpreter

Interpreter –  It provides to evaluate the language grammar and description. This idea bases on having the class for each symbol…

5 years ago

Behavioral Patterns – Command

Command – It turns the client’s requests into a stand-alone object which contains all information about the client’s requests. These transformations let…

5 years ago

Behavioral Patterns – Chain of Responsibility

Chain of Responsibility – It lets the program passes the client requests along a chain of handlers. Upon receiving the client’s requests,…

5 years ago

Design Patterns – Behavioral Patterns

The behavioral patterns are about identifying the common communication patterns between objects and bring about these patterns. The behavioral patterns…

5 years ago

Structural Patterns – Filter/Criteria

Filter/Criteria – According to the developer logic and decouple methods to connect, which uses the different standard rules to filter.From Design…

5 years ago

Structural Patterns – Proxy

Proxy – An object representing another object, allowing do something from the original object.From Design Pattern – Structural Patterns Structure Proxy…

5 years ago

Structural Patterns – Private Class Data

Private Class Data – Restricts accessor/mutator access. Control write access to object attributes and separate data from function to use it.…

5 years ago

Structural Patterns – Flyweight

Flyweight – A fine-grained instance is used for efficient sharing. Reduce the create object number and memory occupation, then improve the…

5 years ago

Structural Patterns – Facade

Facade – A single class that represents an entire subsystem that hides the system complexity.From Design Patterns – Structural Patterns Structure…

5 years ago

Structural Patterns – Decorator

Decorator – Add new behaviors to the object without modifying the object architecture and keep existing behaviors.From Design Patterns – Structural…

5 years ago