Suggestions on Implemented observer pattern | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Suggestions on Implemented observer pattern

Hi Please find below code I have implemented for observer design pattern: https://code.sololearn.com/cY7MaU8bNbtc Can anyone suggest me any improvements on the same? One I know and that is like not to define class member functions as inline. Any other ? Please feel free to share your view. Additionally, child class has mechanism to implement a observer pattern like add observer and remove observers. Is there a way to make it generalized implementation as I think that each class which I want to make as observer will have these code as repeated. Thanks in advance..!

13th Mar 2022, 6:50 AM
Ketan Lalcheta
Ketan Lalcheta - avatar
3 Answers
+ 3
What you have is a violation of the single responsibility principle for your Child class (which is now responsible for doing kid stuff (like getting injured) and to provide the publish-subscribe infrastructure). As suggested before, refactor the observer pattern infrastructure out into classes Observer and Observable. The observer is much interested in the observed object's state, so be sure to pass it to the observer. For example: https://code.sololearn.com/c5M7nJ3dmgp4 As for generalising the observers, well, any observer can in principle do whatever with the information. If you feel that all observers have a common response, of course, you can create abstract classes to refactor out commonalities and use calls to abstract methods, implementation details of which are left to concrete classes.
13th Mar 2022, 10:49 AM
Ani Jona 🕊
Ani Jona 🕊 - avatar
+ 2
You try to make an abstract Observer class and abstract subject class Then make a base class which implements both observer and subject And make the rest of your classes from the base class
13th Mar 2022, 7:32 AM
Raul Ramirez
Raul Ramirez - avatar
13th Mar 2022, 7:00 PM
Ketan Lalcheta
Ketan Lalcheta - avatar