Composite Pattern
- 4th Apr 2018
- 0
- 5903
- Advantages of Composite Pattern composite pattern class diagram composite pattern in java composite pattern in java with examples Disadvantages of Composite Pattern how we can implement composite pattern Significance of composite pattern what is composite pattern ? When to use Composite Pattern ?
Composite Pattern is one of the structural design pattern In this pattern, we will have a tree structure hierarchy of classes and common operation will be performed on each class in the hierarchy. Node in the hierarchy is a class which will have children Node class is also called as “Composite” class Leaf in the […]