builder
-
BuilderModeling/DesignPattern 2020. 2. 24. 22:00
1. Overview The intent of the Builder design pattern is to separate the construction of a complex object from its representation. We have a complex process to construct an object involving multiple steps, then the builder design pattern can help us. In builder, we remove the logic related to object construction from client code and abstract it in separate classes. 2. Description 2.1 Motivation 2..