InterviewSolution
Saved Bookmarks
| 1. |
Difference Between Builder And Composite ? |
|
Answer» Builder is a creational Design Pattern WHEREAS COMPOSITE is a structural design pattern. Composite creates PARENT - Child relations between your objects while Builder is used to CREATE group of objects of PREDEFINED types. Builder is a creational Design Pattern whereas Composite is a structural design pattern. Composite creates Parent - Child relations between your objects while Builder is used to create group of objects of predefined types. |
|