Answered step by step
Verified Expert Solution
Question
1 Approved Answer
QUESTION 1 [ 1 5 points ] Table 1 shows the difference between decorator pattern and Inheritance. Please write which label ( Decorator , Inheritance
QUESTION points
Table shows the difference between decorator pattern and Inheritance. Please write which label DecoratorInheritance the columns belong to
Table
tableUsed to extend the functionality of a particular object.,tableUsed to extend the functionality of a class ofobjectsDoes not require subclassing.,Requires subclassing.DynamicStatic.Runtime assignment of responsibilities.,Compile time assignment of responsibilities.tablePrevents the proliferation of subclasses leading to lesscomplexity and confusion.tableCould lead to numerous subclasses, explodingclass hierarchy on specific occasions.More flexible.,Less flexible.tablePossible to have different decorator objects for a givenobject simultaneously. A client can choose whatcapabilities it wants by sending messages to anappropriate decorator.tableHaving subclasses for all possible combinations ofadditional capabilities, which clients expect out ofa given class, could lead to a proliferation ofsubclassestableEasy to add any combination of capabilities. The samecapability can even be added twice.Difficult.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started