Factory Method Pattern - Design Patterns (ep 4)

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 พ.ย. 2024

ความคิดเห็น • 792

  • @thekonax5006
    @thekonax5006 4 ปีที่แล้ว +346

    This guy is already speaking in 1.5 speed. You are the best Christopher! Thank you

    • @madhusudanratnalu400
      @madhusudanratnalu400 3 ปีที่แล้ว

      Hehe

    • @madhusudanratnalu400
      @madhusudanratnalu400 3 ปีที่แล้ว +2

      I could not able to here properly in 1.25x too😄😄

    • @andrejuha164
      @andrejuha164 3 ปีที่แล้ว

      @@madhusudanratnalu400 you took me my words :)

    • @andrejuha164
      @andrejuha164 3 ปีที่แล้ว

      @@madhusudanratnalu400 then is not boring.

    • @a.nk.r7209
      @a.nk.r7209 3 ปีที่แล้ว

      and here 1i'm watching it in 1.5x

  • @kareemjeiroudi1964
    @kareemjeiroudi1964 4 ปีที่แล้ว +147

    BTW, whenever I need a reference for design pattern, I would actually go back and watch your videos instead of Design Patterns by the gang of four, because you're incredibly good at explaining Object-Orientation concepts.
    Please keep up your awesome work!

  • @tobylifers3390
    @tobylifers3390 ปีที่แล้ว +7

    This guy's energy is the best.

  • @BleachWizz
    @BleachWizz 4 ปีที่แล้ว +32

    I think I'm understanding why you're such a good teacher.
    I can't identify how you're doing it, but you manage to move on and explain new things saying the same thing over and over and over again. But everytime you say it there's something new yo realise about it, the way you wrote the script of your videos (or just made them) is amazing.

    • @calexito9448
      @calexito9448 3 ปีที่แล้ว +4

      Yesssss, i love to see the video once again and see that he was explaining the same concept from the beggining but i just did not understand

  • @phuctranbao7518
    @phuctranbao7518 ปีที่แล้ว +1

    Please know that you save my and so many others' lives. People, we need to protect this man at all costs!!!!

  • @Nex_Addo
    @Nex_Addo 5 ปีที่แล้ว +7

    I really appreciate you going through the logic of "Well why wouldn't we just do xyz", "we don't do that because then...". It really helped make it click that it's not just about being able to instantiate different sub-types, it's also about being able to instantiate them in specific, repeatable ways.

  • @FionaCat86
    @FionaCat86 7 ปีที่แล้ว +11

    The example in the book confused me to no end, but you described this so clearly. I think the missing piece for me was understanding the power of encapsulating different strategies for object creation. Once I understood that, it all clicked. Thanks so much, I hope you will continue with more tutorials!

  • @Mitch_Crane
    @Mitch_Crane 7 ปีที่แล้ว +182

    Thank you Christopher for another helpful explanation on patterns. I cannot imagine how long it takes to edit all these jump cuts. God bless.

    • @ChristopherOkhravi
      @ChristopherOkhravi  7 ปีที่แล้ว +49

      Thank you for the kind words and the understanding :) It does take a long time ;) :)

    • @gurtelem3586
      @gurtelem3586 4 ปีที่แล้ว +2

      ​@@ChristopherOkhravi You should use jumpcutter to avoid wasting all this time :-)
      github.com/carykh/jumpcutter

    • @AFPinerosG
      @AFPinerosG 3 ปีที่แล้ว +24

      Guys! Please read this comment until the end, I know it is long but it will be worth your time if you really want to learn. I love these videos but this video is WRONG!
      This is a MISINTERPRETATION of the Factory Method pattern. This is NOT the purpose of the pattern, this is a very common misunderstanding. Be careful. I'm telling you this because I'm reading it from the Gang of Four Design Pattern book, I have it in my hand right now.
      Where did this video go wrong?
      1. When it said that the problem this pattern solves is isolating the complexity of the creation. This is NOT the purpose. Isolating the creation of the objects is the responsibility of the Abstract Factory, not Factory Method.
      2. When he said that a factory method can return several types of Products. No!! The factory method should return a SINGLE Product type (this is a little lie, but bear with me)
      The problem that is solved by this pattern is that the Abstract Creator can't know which Concrete Products should be used by each Concrete Creator, so it let's the Concrete Creators define the type of Concrete Product to be used via a factory method, which is an abstract method (Java).
      Let's say I have a Zoo class (Abstract Creator) and I have multiple types of Zoo: DogZoo and CatZoo (Concrete Creators). I also have the class Animal (Abstract Product) and the classes Dog and Cat (Concrete Products). Also, the Zoo has a List of Animals.
      OK, so let's say the Zoo has a method SpawnAnimal() that creates a new animal and adds it to the Animal List. But... Wait... Zoo doesn't know which type of animal it should add to the list! Does it add a cat? a dog? a parrot? Zoo can't know! So Zoo says "OK I will define a factory method createAnimal() so that my subclasses can tell me which type of Animal they want to use when I spawn an animal".
      So the DogZoo will return a dog in that createAnimal() method. The CatZoo will return a cat. Then when the Zoo calls the SpawnAnimal it creates the new animal with its createAnimal function.
      That's the idea of this method. The ConcreteCreators tell the AbstractCreator which ConcreteProduct to use!!!
      That's why the definition says "let subclasses define the ConcreteProduct". The purpose is NOT about isolating the creation in a separate Factory class!!! The purpose is NOT to allow switching factories on runtime to change from one behavior to another!!!
      Now that I have your attention. I lied when I said that the factory method can only return a single type of Concrete Product. There is actually a variation called the "Parameterized Factory Method" but it requires a parameter to tell the Factory Method which type of object to return in case a Concrete Creator is compatible with multiple Concrete Products.
      Going back to my example it would be something like FarmZoo and CityZoo. The farm zoo is compatible with Dog, Pig and Sheep. The CityZoo is compatible with Lion, Zebra, Hippo and Giraffe. The createAnimal() would now be createAnimal(type). That's it. So now when Zoo wants to spawn a new Animal you can tell it which type of animal to Spawn. But it won't let you spawn an animal that is not allowed.
      Now about the isolation. The Abstract Factory pattern DOES isolate the creation logic, thus, the clients create the factory and expect the factory to return a desired object to them. In the factory method there is NO client that consumes a factory expecting an object to be returned. In the factory method pattern the client of the factory method is the Abstract Creator!! The abstract creator is literally the class that "consumes" the factory method implemented by the subclasses.
      In other words, Christopher has created an Abstract Factory in which the Concrete Factories have a single Factory Method. Keep in mind that Abstract Factory can be implemented as a collection of Factory Methods OR as a collection of Prototypes.
      Please, Guys, I hope you understood this because this is a HUGE misunderstanding in the industry and most Juniors think they understand Factory Method but they really don't, they constantly confuse it with Abstract Factory because even smart teachers get it mixed up.
      I hope this was clear :) If you didn't understand, my advice is to go and read the Design Patterns: Elements of Reusable Object-Oriented Software book.

    • @MorganFreemanIsLife
      @MorganFreemanIsLife 3 ปีที่แล้ว

      @@AFPinerosG omg ur right

    • @jvsnyc
      @jvsnyc 2 ปีที่แล้ว +1

      @@AFPinerosG I regret I can only give this one Thumbs up!

  • @nikeshdevaki
    @nikeshdevaki 4 ปีที่แล้ว +4

    Nothing went to my mind when I watched this video for the first time. Then I went back and read this concept on "The Head First Design Patterns" book and then came back here. This time things are very relatable and visualizable. Now I following this method for all the patterns and its very helpful. I suggest the same for beginners.

  • @asrajan55
    @asrajan55 6 ปีที่แล้ว

    Excellent, excellent, excellent lecture! Takes the time to introduce, repeat, cite examples, repeat.... No stupid power point slides... Talks to you and uses his hands and mouth to clearly explain...

  • @SuperTurboCrash
    @SuperTurboCrash 7 ปีที่แล้ว +46

    The editing in this video gave me heart palpitations.

    • @ChristopherOkhravi
      @ChristopherOkhravi  7 ปีที่แล้ว +29

      +SuperTurboCrash Terribly sorry about that and I hope you are ok :) But hopefully the information per second ratio was quite high?

    • @tomiekk6255
      @tomiekk6255 4 ปีที่แล้ว +4

      actually IMO it was pretty good, at least it's easier to not resign, or fall asleep when something is constantly happening. Perfect for my sleepy day like today:P Thanks @Christopher for this vid. I barely can remember when was the last time I was that much into viewing something on design patterns.

    • @loganfeiler2412
      @loganfeiler2412 3 ปีที่แล้ว

      I actually found it quite entertaining to watch, partly because of all the jump edits, and the subject content was explained very well.

  • @mbesurich
    @mbesurich 3 ปีที่แล้ว +7

    This is the best explanation of this pattern! What could be better? Personaly for me - to show an example of what different way of creating products can contain different factories. This could help me to understand more clearly the benefit of using factories versus creating straight the products. But anyway, thank you very much for such understandable information delivery!

  • @talyakatz8387
    @talyakatz8387 3 ปีที่แล้ว +1

    Im a CS student and you explain it 10000x better than my lecture. Thank you!!!!

  • @SavageStyle77
    @SavageStyle77 6 ปีที่แล้ว

    Looks like you high but I was surprised how clearly you understand what people need to know, what they struggle with - all your examples are TOP. And how clearly you explaied everything! One of the best teachers I ever saw. Recommended!

  • @Sam-pq2pk
    @Sam-pq2pk 9 หลายเดือนก่อน +1

    I come from other videos where everybody is giving great comments however the video is trash. I finally came to the right place where the explanation is actually good. Thank you Chris you should build a Java course someday!

  • @pavel2747
    @pavel2747 5 ปีที่แล้ว

    The examples of factory method and abstract factory patterns provided by this book are the most convenient and understandable ones I've ever seen. And I: 1) have seen dozens of them; 2) am not from NY, Chicago etc. I'm not even from USA.

  • @shankar7435
    @shankar7435 10 หลายเดือนก่อน

    I completely agree with the fact that the book's example is causing more confusion than understanding. Your explanation at 5:35 is legendary and that's all I wanted to understand this pattern. Thanks a ton for that.

  • @Mohamed-Maghrebi
    @Mohamed-Maghrebi 4 ปีที่แล้ว

    WOW MEN , I DON't UNDERTUND GOOD ENGLISH, BUT I LEARNED MANY THINGS IN YOUR VIDEO, YOU HAVE A GIFT OF SHARING IDEAS, THANK YOU

  • @colococolo
    @colococolo 6 ปีที่แล้ว +1

    A 100% agree with you on that the example the book gives is rather hard to relate to. Your explanation helped me understand the factory patterns much better. Thanks a lot!

  • @mahipparekh2167
    @mahipparekh2167 2 หลายเดือนก่อน

    I read the book, I see your videos and then I code & make notes.
    Thank you once again for this treasure of resources.
    Lots of respect ➕➕

  • @ЮлияВадимовнаОсновская
    @ЮлияВадимовнаОсновская 9 หลายเดือนก่อน

    I love that you move so much while speaking, it helps me get less distracted
    THank you for your explanatoin, it was really useful and easy to understand!

  • @neon_code
    @neon_code 3 ปีที่แล้ว

    I was reading the book and got confused a lot , now I watch your videos first then read the book. Thanks!

  • @aniruddhabhattacharjee3729
    @aniruddhabhattacharjee3729 3 ปีที่แล้ว +1

    I came here after going through the HFDP book and somehow although having gone through the pattern twice, it was not very clear to me. It's a great content, 27 mins worth every second, gives a very clear idea going from top down approach to the design pattern. Very well explained, thank you.

  • @abhishekrajbhanu1452
    @abhishekrajbhanu1452 ปีที่แล้ว

    I admire your ability to use effective and generic analogy to make your audience understand the concept... Just requesting you to post complete video on SOLID principle .

  • @GeaForce
    @GeaForce 2 ปีที่แล้ว +2

    Christopher: Check this book, it's really easy to understand
    Also Christopher: Man, the examples on the book are catastrophic

  • @NoleoTheDog
    @NoleoTheDog 2 ปีที่แล้ว

    Fan of your details and expressions. It can be seen that you do it by heart and how much you love being a teacher.

  • @justai3766
    @justai3766 3 ปีที่แล้ว

    Your communication style is amazing. The way you explain these concepts is one of the best. Thank you!

  • @ringo.gg.
    @ringo.gg. 7 ปีที่แล้ว +168

    Dude you are fuckin amazing, I haven't found any other channel that explains and make clear the concept like you did.
    Hope you make all the g.a.m.m.a patterns on this series, cheers !

  • @ANKITRAJPUT-tu2bk
    @ANKITRAJPUT-tu2bk 6 ปีที่แล้ว

    Brother , you are the best tutor for design pattern , i was facing so much difficulty with Head first , but now i got a new head to make me understand .. Thanks and keep the good work.

  • @shanm4629
    @shanm4629 3 ปีที่แล้ว +1

    I realized this is the best explanation after watching bunch of other videos on the same topic for couple of days. Thanks for making such a quality video on Factory Method Pattern.
    At roots I propose to use this when
    1. The client program is only interested in what kind of object is required, rather than what exact object is required. Best Example: I need level4 obstacle and not really bother to tell anything more than that.
    2. When The client program is more concerned about how they co-relate when they get created more than one. Ex: random Animals are expected rather balanced animals from a Factory.
    Awesome explanation. Thanks.

  • @obinnaubah9045
    @obinnaubah9045 5 ปีที่แล้ว +1

    The Asteroid example really helped drive home the point. I'm still not completely clear about a lot of things but I have a lot more clarity. Thank you very much!

  • @KellsCode
    @KellsCode ปีที่แล้ว

    This man is a true teacher. That's how it's done.

  • @brunon.8962
    @brunon.8962 4 ปีที่แล้ว

    This guy is actually better than the book itself.

  • @nishantsingh1453
    @nishantsingh1453 6 ปีที่แล้ว +1

    The way u hold on to user's attention level is just impressive !!

  • @sastashroud7646
    @sastashroud7646 4 ปีที่แล้ว

    dude i am indian and these video lecture on design pattern really saved my life no one has taught as well as you have thank you bro really appreciated your work

    • @ChristopherOkhravi
      @ChristopherOkhravi  4 ปีที่แล้ว +1

      Thank you for the comment. I’m very glad to hear that 😊😊 Thanks for watching

    • @sastashroud7646
      @sastashroud7646 4 ปีที่แล้ว

      @@ChristopherOkhravi your lecture really helped me I attempted every question on design patterns thanks

  • @kuntalshah07
    @kuntalshah07 7 ปีที่แล้ว

    Dude, This is the best design pattern lecture series I saw till now

  • @rohitkalya
    @rohitkalya 3 ปีที่แล้ว

    Very much clear and now i understand why you said ... read first "strategy design pattern". Thanks

  • @hamzac.4555
    @hamzac.4555 4 ปีที่แล้ว +4

    I was looking for a real tutorial about design pattern, when you said dont use static method, I subscribed and gave a like. Keep it up bro !

    • @40ozhemlock
      @40ozhemlock 3 ปีที่แล้ว

      that was a moment of clarity for me too

  • @IamMuldeh
    @IamMuldeh 7 ปีที่แล้ว +4

    Going to recommend your channel to all of my class mates.

  • @Khatsil
    @Khatsil ปีที่แล้ว +1

    the asteroid example is really good!

  • @paraspatel5763
    @paraspatel5763 4 ปีที่แล้ว

    This was by far the best explanation of factory method pattern I found on YT. Thanks.

  • @mirzaaqeel
    @mirzaaqeel 3 ปีที่แล้ว

    You are a teacher.... Hats off to your way of explaining and fitting in examples... perfectly....Thanks a lot.

  • @jagmagana
    @jagmagana 6 ปีที่แล้ว

    Thanks for this design patterns series, i downloaded all videos because i cant lost this treasure...

  • @mouhssine04
    @mouhssine04 2 ปีที่แล้ว +1

    Hello Christopher, you've really made my day, your explanation is quite stunning, great thanks for you mister, From now on, no confusion anymore about Factory Method Pattern.

  • @FeroChau
    @FeroChau 7 ปีที่แล้ว +59

    Very clear explanation!
    When I try to do unit testing, I find that it will force me to use factory pattern. Whenever any instance is instantiated in runtime, it cannot use dependency injection to inject the reference. However, if I use new operator inside the method, I cannot control the instantiation of the instance. Thus, the class cannot be tested in isolation.
    In this case, I am forced to inject a factory to the class and use the factory to create object. In this way, I could mock the factory and have a full control of the instantiation.

    • @ChristopherOkhravi
      @ChristopherOkhravi  7 ปีที่แล้ว +5

      Excellent example and explanation. This should have been part of the video :) :) I agree 100%. Thanks for watching.

    •  6 ปีที่แล้ว +2

      That's actually an eye-opening example, thanks a lot.

    • @AAA-bo1uo
      @AAA-bo1uo 5 ปีที่แล้ว +2

      Lucas Chau ,
      Can we have an example please? Couldn't wrap my head around injecting a factory when a dependenct is injected (or supoosed to be injected?)
      Sorry.. just didn't make sense.
      I get the point you are trying to make, just can't see the implementation or design itself :(

    • @firstnamelastname4685
      @firstnamelastname4685 3 ปีที่แล้ว +2

      please explain "Whenever any instance is instantiated in runtime, it cannot use dependency injection to inject the reference." if you are free, thanks!!!

  • @yanavalasatava9465
    @yanavalasatava9465 6 ปีที่แล้ว

    You are amazing and very charismatic (which is important) teacher! For someone who is new to programming and patterns your videos are of a great help! Thank you!

  • @mannyfay2524
    @mannyfay2524 8 หลายเดือนก่อน

    You explain this topic super well and I like your speed of speaking very much!! If you want to keep evolving your way to make such awesome tutorials, please avoid your huge amount of jumping because of cutting your videos.

  • @aliki212
    @aliki212 4 ปีที่แล้ว +2

    Amazing work!Crystal clear explanation, personalized and out of this world editing!I usually put the videos at 1.25 speed to actually keep my ear on them - yours is purely A+!Cheers!!!

  • @lima1877
    @lima1877 7 ปีที่แล้ว +236

    Just a positive comment: would be nice if you could implement these patterns into actual code after the lecture. Please release more videos!!!! Best..

    • @ChristopherOkhravi
      @ChristopherOkhravi  7 ปีที่แล้ว +44

      Very good point. Thank you. I'll keep videos as priority number one but will indeed try to figure out something for the code. Thanks!

    • @pradeeph2000
      @pradeeph2000 7 ปีที่แล้ว +21

      May be the coding part could be an assignment for people viewing the video, it could be shared via github link or something.

    • @zebcode
      @zebcode 7 ปีที่แล้ว +11

      Or maybe each video could be accompanied by a play by play coding session. I think that would give you the choice of learning the theory and then seeing it in action.

    • @bwilless1
      @bwilless1 6 ปีที่แล้ว

      Also the book has code and it attempts to lead you down the path so that you code it yourself!

    • @malino24-souls
      @malino24-souls 6 ปีที่แล้ว +2

      im currently doing it :) still need to figure out how factory and abstract factory work :D

  • @thehumblechannel3441
    @thehumblechannel3441 5 ปีที่แล้ว

    I really like the way you explain why Factory method is superior than Simple Factory. It really clears the cloud for me

  • @lapidations
    @lapidations 2 ปีที่แล้ว

    This was SO much better than the book

  • @KuzyoYaroslav
    @KuzyoYaroslav 3 ปีที่แล้ว

    This is just awesome, I have never thought its possible to explain those patterns so interesting with just white board. Thanks for you work.

  • @russiafromtheinside2776
    @russiafromtheinside2776 4 ปีที่แล้ว

    It worth watching not even for pattern understanding but for the plot. I was like - wow, what's going to be next with these asteroids and animals? Your expressions are just amazing. Thank you very much. Subscribed.

  • @AC-xx1uo
    @AC-xx1uo 3 ปีที่แล้ว +1

    Thank you for this!! I’m an absolute beginner with OOP and this is one of the only videos I’ve found that helps it make sense at my level. The visuals and examples are so great. You rock!

  • @ziadesaa8776
    @ziadesaa8776 6 หลายเดือนก่อน

    After 7 years still useful and priceless ❤❤😊

  • @brunon.8962
    @brunon.8962 4 ปีที่แล้ว +8

    So, this is about "encapsulating" instantiation in a separate class (factory) so you don't have repeat code and/or mix it with code with different purposes. At the end everything is about separating and organizing implementations by using interfaces so nobody gets crazy trying to figure out what a program does. Imagine to read a book without chapters so you have to find each topic by entirely reading the book... No, let's isolate each part (thanks to inheritance, composition, delegation etc.) and put a name on it so we can read, understand and add code. Imagine those early spaguetti code programmers trying not to commit assasination and instead creating OOP and all these patterns.

  • @itisprofile
    @itisprofile 5 ปีที่แล้ว +1

    Very clear explanation!
    I haven't found any other channel or video that explains the concept like you did.

  • @JeffreyConcerto
    @JeffreyConcerto ปีที่แล้ว

    Great teacher! You did an excellent job breaking down the pattern, and I completely agree that the HeadFirst examples of Pizza and Pizza Stores are terribly confusing and uninspiring compared to their other examples.

  • @safakhan8177
    @safakhan8177 3 ปีที่แล้ว +1

    Thank you Christopher! The example of the game development is brilliant! I think I will always keep that bit in mind whenever I hear the term factory.

  • @dark808bb8
    @dark808bb8 3 ปีที่แล้ว

    I think it is really interesting how you show that various types of creators and products can reduce to a few creators and products with different properties.

  • @OritNeeman
    @OritNeeman 4 ปีที่แล้ว

    YOU ARE AWESOME!!! Thanks to you I now REALLY understand design patterns. Everything you teach is so clear and it's fun and interesting to learn from you. Thank you so much. You are the best.!!!

  • @stewiegriffin6503
    @stewiegriffin6503 7 ปีที่แล้ว +399

    without animals and cars there wouldn't be OOP
    Every try to explain OOP uses animals and cars.

    • @kimk.m2428
      @kimk.m2428 6 ปีที่แล้ว +2

      Duh! Mammal enough?

    • @jason_v12345
      @jason_v12345 6 ปีที่แล้ว +17

      I know, right? And what's funny is that real-world OOP rarely deals with such familiar, real-world abstractions.

    • @madsteeez
      @madsteeez 5 ปีที่แล้ว +8

      without OOP there wouldn't be animals nor card.

    • @madsteeez
      @madsteeez 4 ปีที่แล้ว

      @@jason_v12345 I do. I work for Lufthansa Technik. I abstract aircraft engines.. I love it

    • @darkoazure9902
      @darkoazure9902 4 ปีที่แล้ว

      Great catch! But I'm not :)

  • @czarlp
    @czarlp 7 ปีที่แล้ว +2

    You are amazing as a teacher dude, I find it very hard to not understand and follow everything you are saying, it's almost intuitive. Keep up with cutting the video in a lot of pieces, I think it makes the learning process easier if you "shoot" sentences instead of sending a big package of words. I don't know if that makes sense but anyway, keep up with whatever you do. Kudos to you.

  • @gregridd
    @gregridd ปีที่แล้ว

    You are a great teacher Christopher Okhravi!

  • @sharathchandra5314
    @sharathchandra5314 2 ปีที่แล้ว

    I am new and i am late. But i am hypnotized and will be sticking to your rest of the videos 😀

  • @kensearle4892
    @kensearle4892 10 หลายเดือนก่อน

    Thank you!
    Ex: During the registration of users, 90% of our clients were exactly the same. However, we had a few custom clients who required us to save some extra registration fields and an extra registration page. Instead of giving those clients their own copy of the system, the factory pattern was used to instantiate those custom clients, which was determined by their domain name. I can't take credit for the choice but it was an interesting way to instantiate the custom Registration objects along with the standard Registration object.
    P.S. There were several different starting pages due to the custom clients, so using the factory pattern helped with code reuse.

  • @adewaleayokanmiadeleye2841
    @adewaleayokanmiadeleye2841 2 ปีที่แล้ว +1

    Thanks for creating this video. Certain concepts are difficult to understand if the examples used are relatable to a certain group of people.

  • @mercury801115
    @mercury801115 2 ปีที่แล้ว

    I finally understood the difference between simple factory and factor method. Thank you!

  • @indramaniarora7901
    @indramaniarora7901 4 ปีที่แล้ว

    Best channel for design patterns. Sad there are no new videos from him

  • @andypye4006
    @andypye4006 2 ปีที่แล้ว +1

    Thanks for these videos Christopher. You have a superb, enthusiastic delivery style !

  • @honey30prachi
    @honey30prachi 6 ปีที่แล้ว +2

    i just love your way of explaining difficult things. Seriously these videos are very helpful

  • @JorgeGarcia-rh1gu
    @JorgeGarcia-rh1gu 5 ปีที่แล้ว

    So yeah, amazing explanation, away from the technical and complex words present in every article I've read so far. It's just the perfect vocabulary, the perfect explanation in conjunction with the perfect examples. Good job buddy, keep it that way

    • @ChristopherOkhravi
      @ChristopherOkhravi  5 ปีที่แล้ว

      Much appreciated. Thank you for the kind words, the detailed feedback and for watching of course 😊😊😊

  • @pionapior
    @pionapior 7 ปีที่แล้ว +209

    Like before a watch because you are a legend !

    • @ChristopherOkhravi
      @ChristopherOkhravi  7 ปีที่แล้ว +10

      :D

    • @ecsweb-studio2732
      @ecsweb-studio2732 7 ปีที่แล้ว +9

      That man is amaizing
      he is real great actor.
      Holywood is mising real great actor.

    • @aymansafi2998
      @aymansafi2998 6 ปีที่แล้ว

      let hem here dude so he helps us in programming stuff :D

    • @gytisdobrovolskis5933
      @gytisdobrovolskis5933 6 ปีที่แล้ว +1

      Goddamn the factory pattern is already quite complicated here. And now I checked on some pluralsight tutorials - and there are a lot more complications, pitfalls and ways to do it. I think I will skip this pattern for now.

  • @miloszbacnik3366
    @miloszbacnik3366 6 ปีที่แล้ว

    I must say, that I've jumped directly to GOF book. Things were blurry. But, this whole video set makes things way more clearer. So, a BIG thanks from me :)

  • @ahmedbishree9429
    @ahmedbishree9429 2 ปีที่แล้ว

    I read around two different books and a few video courses but believe me I didn't understand as much as I watched your first 20 minutes many thanks.

  • @RogerThat902
    @RogerThat902 3 ปีที่แล้ว

    Your rant on the Factory Design Pattern Example in that book is hilarious because that's literally what led me to google searches because the example got complicated quick hah. I was rocking and rolling until that chapter!

  • @nishanckarunatillake3361
    @nishanckarunatillake3361 7 ปีที่แล้ว +5

    Hi, I think this is a fantastic set of tutorials. I found it really useful. Hope you will find more time and energy to progress though the book quickly and not give up.

    • @ChristopherOkhravi
      @ChristopherOkhravi  7 ปีที่แล้ว +1

      Thanks for the encouragement! I'm very glad they're useful. Will try my best indeed.

  • @WillEhrendreich
    @WillEhrendreich 4 ปีที่แล้ว

    These are the best explanations of these theories on TH-cam, I swear. Thank you so much for sharing your knowledge with us all.

  • @elinorkent7188
    @elinorkent7188 5 ปีที่แล้ว +1

    the best tutorial for this. watched many, but now i actually understand it.

  • @kenya6749
    @kenya6749 6 ปีที่แล้ว +1

    This helped SOOO much before my exam tomorrow! THANKS!!

  • @sahilkaul6199
    @sahilkaul6199 5 หลายเดือนก่อน

    god bless you christopher, i could never understand why we needed this pattern. Thankyou for making it so clear :)

  • @Coolharshit149
    @Coolharshit149 3 ปีที่แล้ว

    Wow, i really felt when you said about the pizza example from the book. You cleared all the doubts

  • @rsdntevl
    @rsdntevl 7 ปีที่แล้ว +1

    The game example gives good insight on the dynamic nature of the factory method!

    • @ChristopherOkhravi
      @ChristopherOkhravi  7 ปีที่แล้ว

      +rsdntevl Cool! I'm glad to hear. Thanks for the specific feedback :) and thanks for watching :)

  • @luisfelipedasilva7128
    @luisfelipedasilva7128 2 ปีที่แล้ว +1

    You´re incredible, man. The way you teach is awesome. I can´t get away from the video, i just want to watch more and more

  • @drapala97
    @drapala97 6 หลายเดือนก่อน

    i love this channel so much, Mr. Okhravi is a bless for the community. God bless you

  • @georgebrandon9675
    @georgebrandon9675 หลายเดือนก่อน

    Great video! Still the best explanation on the internet

  • @wearemiddream
    @wearemiddream 3 ปีที่แล้ว

    i've been trying to understand this for a minute and you just nailed it dude, thank you!

  • @tsumardi
    @tsumardi 5 ปีที่แล้ว

    great explanation . I think you should give explanation in the following order in the beginning: text definition, purpose and why we need it. dig deep then summarize to some that want to skip the details. You are doing awesome job and quick refresher for me without watching it all the way to the end. Thumbs up.

  • @joaolima7194
    @joaolima7194 10 หลายเดือนก่อน

    Congratulations my friend! Every class I am more interested in design patterns and impressed with your control of the topic and the way you teach! Thanks a lot for all your classes, I will see all your series about design pattern and try improve my knowledge

  • @guilhermerenna
    @guilhermerenna 2 ปีที่แล้ว

    Your videos are awesome! I have watched them all in the past, and I continuously come back to them and use them as a reference. I can't thank you enough!

  • @SaurabhGuptaicecool
    @SaurabhGuptaicecool 4 ปีที่แล้ว

    Sir, you are a life savior. Thank-you.

  • @mydexcicdeja
    @mydexcicdeja ปีที่แล้ว

    Excellent thank you for the clarity in your explanation and reconfirmation during the session

  • @bloomtrading
    @bloomtrading 6 ปีที่แล้ว

    this is the best channel ever

  • @shubhamsingh-nd6wo
    @shubhamsingh-nd6wo 2 ปีที่แล้ว

    Thank you so much man. Every single video of yours makes me feel like I found a gold mine!

  • @noknata3240
    @noknata3240 2 ปีที่แล้ว

    i love you i love the way you teach you. You make complex notion ease and you english and exemple are simply and basic. good job

  • @Tanya_5091
    @Tanya_5091 6 ปีที่แล้ว

    Why haven`t I found this channel earlier? So useful, the best explanation ever

  • @andreassmedjebacka5785
    @andreassmedjebacka5785 7 ปีที่แล้ว +1

    Thanks! I'll make sure to check out that Patreon page. The repetitive explanations of the same thing suits me well as I watch your vids standing in a crowded subway and can't easily annotate.

    • @ChristopherOkhravi
      @ChristopherOkhravi  7 ปีที่แล้ว +3

      Thank you very very much for the considering :) No pressure.

  • @alexfish7792
    @alexfish7792 5 ปีที่แล้ว +4

    6:59 - I had this exact opinion when I first study this chapter, so I thank you for confirming I'm not insane!

    • @alexivaylov688
      @alexivaylov688 4 ปีที่แล้ว

      The examples they give are like "New York pizzas are thin crust" and "Chicago pizzas are thick crust". This IMO is bad because it makes it sound like the produced concrete objects are different (like they have been decorated with decorator pattern or something) while the factories stay the same. The examples in this video are better because they show the variation in the factories without decorations to the produced objects.

  • @gauravradioactive
    @gauravradioactive 3 หลายเดือนก่อน

    Thanks for the video. Using Factory Pattern to design game was really interesting !

  • @kevinaud6461
    @kevinaud6461 6 ปีที่แล้ว

    I hope you are a professor or will be one day! I could have really used a lecturer like you when I was doing my CS degree