Welcome to the CSC Q&A, on our server named in honor of Ada Lovelace. Write great code! Get help and give help!
It is our choices... that show what we truly are, far more than our abilities.

Categories

+34 votes

I'm not sure about the question 9: Which pattern allows an object to be notified whenever changes occur to some other object? I think it's the observer but the decorator is trowing me off. Is it the observer or decorator and why?

asked in CSC285_Fall2018 by (1 point)

2 Answers

+17 votes
 
Best answer

This just my opinion, I think that is observer because in the definition of observer pattern, when an object change, it will get notifications.

answered by (1 point)
selected by
+18 votes

I also agree with Duc.

The decorator design pattern is a structural pattern and changes the object itself.

Observer, on the other hand, is a behavioral pattern and implements event handling (ex: adding an event/action after something is completed).

answered by (1 point)
...