Head to cutt.ly/spring_micro and use Coupon Code SUPER70 to get 70% off the course
@mireazma Жыл бұрын
I gotta say that I watched quite a few videos trying to grasp the bridge pattern. After watching this one I can say that I don't have to look further for explanations. It's worth mentioning the specifics of the gang of four: one hierarchy has an abstraction and one/multiple derived abstractions and the other hierarchy has an abstraction (interface) and one/multiple concretions! Oh, and congrats to Google auto-generated cc, exceptional job!😃
@smiteshtamboli10514 ай бұрын
Great explanation!
@DailyCodeBuffer4 ай бұрын
Thanks 🙏
@tilakrathore99205 ай бұрын
nice explanation with good example
@DailyCodeBuffer5 ай бұрын
Thanks 🙏
@accountnew-lo8fu4 ай бұрын
Thank you for great explanation. This is what I've been looking for a whole day😂😂 My question is, defining 2nd hierarchy(video processor) as an interface(not a class) is because it would be used not for itself, but for a parameter for the 1st hierarchy(video)?
@atulkumar-bb7vi Жыл бұрын
Nice explanation bro..
@akatskipain58932 жыл бұрын
Which build pattern we use mostly broo nice explanation broo
@сойка-и8й2 жыл бұрын
Singleton, factory and builder by far what I have encountered the most in my journey
@Scoty982 жыл бұрын
Hey Shabbir what model of chair do you use? Thanks for the answer. Peace
@DailyCodeBuffer2 жыл бұрын
I had purchased from the local shop
@nguyenquan48362 жыл бұрын
Thank you
@DailyCodeBuffer2 жыл бұрын
🙏🏻
@SanjayKumar-di5db Жыл бұрын
seems bridge using strategy pattern
@atularora8710 Жыл бұрын
i thought so as well
@shubhankarpaul27407 ай бұрын
I don't know what kind of implementation he has done... the implementation is incorrect
@shubhankarpaul27407 ай бұрын
Explanation is correct but implementation is not at all correct. Video will be a class first of all and will have it's interface will be an Interface, IVideo, Video will do the dependency injection of IProcessVideo ProcessVideo will be a separate class and will have 3 different Methods, ProcessHD, ProcessUHD and others PrimeVideo, Netflix and other classes will implement the IVideoclass and do the processing independently. Reply in comments if you want the correct implementation