How to use Factory Method Design Pattern to design a course website like Udacity, Edx, Coursera...

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 พ.ค. 2024
  • Learning system design is not a one time task. It requires regular effort and consistent curiosity to build large scale systems. Moreover, every system has different requirements and meeting them requires expertise and people with varied and specific knowledge. There are a lot of resources to learn through videos. But not everyone enjoys that mode of learning. Instead some people understand things better by reading and thinking on the points put forward by the author. Such people can access these in different ways - blogs, articles and books. We have come up with this video to put light on one such aspect, that is - Types of Design Patterns
    Important links and resources:
    ✒ github.com/topics/low-level-d...
    ✒ Quick summary: docs.google.com/document/d/17...
    ------------------------------------------------------------------
    Recommendations
    ------------------------------------------------------------------
    Our full courses on youtube:
    ✒ System Design Primer Course: • System Design Primer C...
    ✒ REST APIs made easy: • REST APIs MADE EASY
    Some paid courses that we recommend:
    ✒Educative.io: bit.ly/3qnW5ku
    ✒Interviewready.io: get.interviewready.io/ (Use coupon code SUDOCODE for extra discount)
    ------------------------------------------------------------------
    About Us
    ------------------------------------------------------------------
    Created and Instructed by:
    Yogita Sharma
    ✒ LinkedIn - / yogita-sharma-83400b55
    ✒ Instagram - / sudo.code1
    ✒ Facebook - / sudo.code
    ✒ Medium - / yogita088
    Post-production(editing, thumbnail etc) managed by:
    CiKi
    ✒ Website: www.ciki.co.in
    ✒ LinkedIn: / 74735937
    Colors and design by:
    Naini Todi
    ✒ LinkedIn - / nainitodi
    Both Arpit and Yogita are software engineers and want to help other software engineers become better by providing high quality and well researched content by adding their creativity and teaching twist.
    ------------------------------------------------------------------
    Join Us
    ------------------------------------------------------------------
    Hangout with sudoCode:
    ✒Discord Server: / discord
    For business:
    ✒Email: sudocode.yogita@gmail.com
    Timestamps:
    0:00 - Intro
    0:29 - What is Factory Design Pattern?
    2:40 - Concept of Factory Design Pattern
    4:57 - Analogy of a Factory
    3:30 - Why choose object and classes for categorizing design patterns?
    6:19 - Real world example and application
    7:42 - Code walk-through
    12:11 - Pros and Cons
    13:41 - Summary

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

  • @curiossoul
    @curiossoul ปีที่แล้ว +12

    I presented similar design in one of the tech interviews and was questioned on breaking OCP in factory class.
    Though this is mostly taught by most authors for explaining the concept, in reality, we can avoid switch case with map so factory method just look up the map and return the value. Now to build the map, we have two choices
    1. Provide register product method in factory so product can register itself and then can be returned
    2. Use reflection to load classes in a map at startup. Map is maintained by factory class. Map key is identifier used in switch case and value is return type of factory method.

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

      Both ways are good enough as an alternate to switch case. At the end factory does have knowledge of the map or the way to figure out the concrete class.

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

      @@sudocode if you agree, would you consider editing the video or add a top level comment to let readers know about this. It might save them from getting kicked out from their dream jobs at no fault of theirs.

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

      Any sample code for for not vloilating OCP, please share.

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

      We use map in our project

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

      I was about to say OCP....You pointed out

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

    The best playlist on Design Patterns I have seen so far. Your way of explanation, examples, animations everything is top notch. Thanks a million to you.

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

    You are amazing! Thanks for creating HLD, LLD, and Design patterns courses.

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

    Before coming to this tutorial, I am having, doubts about design pattern but the way explained all the things it is easy to understand.
    Thank you very much for such informative video ☺

  • @sanjayyadav-tw8mt
    @sanjayyadav-tw8mt ปีที่แล้ว

    Crystal Clear Explanation. Thanks!

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

    Great example. If you can also explain the code flow through debugger, that will help to understand code much better.

  • @gilbert.gabriel
    @gilbert.gabriel 11 หลายเดือนก่อน

    This is an amazing video. Thank you for the wonderful explanation. First time I understood what Factory method pattern is actually meant for.

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

    Very well explained, have been searching for the videos and got this. You saved my life. Thank you ❤

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

    Thank you for the video on an import pattern 👍

  • @mireazma
    @mireazma 10 หลายเดือนก่อน +1

    9:51 CreateCourse() is not the meat and potatoes of the Factory pattern. The Factory pattern relies on delegating the object creation to a class specialized for this purpose. The underlying mechanisms of the actual creation vary by use case and are beyond the scope of the Factory pattern.

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

    Supreb expiation ❤️👌👌
    You always made easy 😊

  • @mireazma
    @mireazma 10 หลายเดือนก่อน +1

    1. 2:28 the class that implements the creation logic is wrongfully called "concrete" class, or subclass, that implement the factory method interface. The "factory" class need not be an abstraction for the creation implemention but a totally separated class. This is because you want to decouple the objects being created, from the factory (see 5.).
    2. 2:56 the same thing. You say that the FactoryClass is abstract or an interface.
    3. 4:40 the concrete class is _not_ hidden from the interface that it implements, it just can't be. But it is hidden from the client.
    4. 9:51 In the Course example you make the Course class abstract. Furthermore you have an abstract method named createCourse() which would suggest it's responsible for the underlying logic of a factory method like newing the Course. In fact it has to do with inner composition of a Course but not with its instantiation.
    5. You made the CourseFactory not an abstract class/interface and well you did. But remember what you said in 1. and 2. But you name the instantiating code getCourse() which would suggest it returns a permanent unique field of the class. You should name _this_ createCourse() or just create().

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

    The second example was little bit complicated but I really like createVehicle example. Thank you for explaining in easy manner.

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

      Do you mean the factory example was complicated or the coding example ?

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

      @@sudocode the course module example. I am at intermediate level may be it’s easy to understand for someone who knows better than me

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

    I really love your video editing work 😍

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

    Excellent explanation. Could you please add video for decorator design pattern?

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

    Excellent 👌👍

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

    Great video, yogita.
    btw, do you have someone for your video editing or how do you do it?

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

    Nmrl parça, finalmente consegui entender o bgl, tmj

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

    Hi Arpita, can you please take more use cases for Low-level design eg. Parking lot, School Management Systems, Hospital Management System, etc?

  • @AbhishekYadav-fb3uh
    @AbhishekYadav-fb3uh ปีที่แล้ว

    thanks for such video

  • @108vicky
    @108vicky ปีที่แล้ว

    Nice explained

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

    The Content is impressive, presentations. Which software used to create this content?

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

    Bahut kam log samjha pate hai is tarah ! Aap unme se ek hai. Thanks for this explaination, I was wondering why this series is not resumed , Hoping you will continue and we will get best out of this series !

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

      Thanks. Check the community posts and you will know why the delays in series 😊

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

      @@sudocode Pakka

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

    What is the program you use to create class diagrams???

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

    After long time

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

    If i create multiple concreate class based on vehicle type (TruckCreator, CarCreator, PlaneCreator) than based on type of vehicle if i return the creator class then that factory interface isnt working like facade class? please answer

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

    Doubt:-
    Is it the same method that's used to expose transaction API's of any bank to Amazon kind of 3rd party

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

    Hi Yogita, can you please upload the code online and share the code url in the description. So that we can also try manipulating the code for the given design pattern.

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

    Hello. I appreciate your effort. I have a question regarding the switch statement in your CourseFactory class as well as else-if statements in the vehicles example. Aren't those breaking the open-closed principle?

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

      No they are not. They are open for extension in a sense you can add more courses but they are closed because each course has its own createCourse method which you cannot modify :)

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

      @@sudocode what if I want to extend your app by creating another type of course? Will I have to modify your class?

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

      I think we cannot strictly follow each of the principles. They are subjective and we need to think based on what is easier and feasible for the given scenario.

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

    As always on to the point and easy to understand . waiting for another design pattern video.
    I have one off the topic query . how is your experience on LinkedIn Learning? dose it actually add some extra point when it comes to big companies ?I would really appreciate your response. Thanks !

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

    Hello and geetings from Bulgaria.
    I like your energetic and well explained courses. However ...
    I can see for last ... many years that it is the Indian scholars pushing the abstract methods while many other have given them up. For ex. the whole C# platform is based on the implementation of interfaces. Which in OOP terms gives us the "is a" relationships. Down the line that also help to implement the very modern now concepts like dependency injection and automatic unit tests. In both cases we can inject an object as another object's "has a", as well as we can inject a Mock object with pre-setup return values. That is for as long as those objects implement the desired interfaces.
    I would love to engage you on small chat / discussion about that.
    Thank you,
    ILIIA

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

      Thank you for your comments. I would have loved to chat with you if you haven’t opened with the Indian scholars. Computer science is a science. It has nothing to do with origin of the scientists. Wish you well 😊

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

      @@sudocode Word scholars is a valid word and it has a meaning within any science regardless how precise science is.
      If one looks for insult he or she will inevitably find it.
      Wish you well

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

    Useful information, but maam dnt you think swich is violating OCP in case we have to add new type.. If not then can you please explain??

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

      Use map instead of switch here, load this map from properties file on startup

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

    where can i get the slides or animation doc used in the course??

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

    Q: What if LLD and HLD class would have different constructor dependencies?

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

    Can we have example of strategy DP too?

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

    Hello mam, it looks like you're using premium features of IntelliJ , is it provided by your company or you bought the license on your own ?

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

      I have my own license

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

    Where can we find the code that was explained in the video ?

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

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

    You have not used createCourse method in factory method to create instance instead used new Class() directly.

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

    Where can I find the code?

  • @saravanakumarradhakrishnan756
    @saravanakumarradhakrishnan756 7 หลายเดือนก่อน +1

    This is simple factory only. Not a factory pattern.

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

    complete the playlist quickly

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

    KINDLY SHARE THIS FACTORY METHOD PACKAGE THAT U HAVE IMPLEMENTED

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

    I am bca first year student . Can i become a software engineer? Plz tell me roadmap.

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

      ofcourse

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

      just search a good programming language that is in demand and has a future.
      Apart from programming there is a lot career choice in IT, Qa( software testing) , network security , DBA etc

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

    i think that code is completly wrong
    theory was right but the implementation was very poor

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

    Why have you stopped making videos. You don't how popular are your videos amongst students

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

      I will be making more. Just took a short break.

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

    Hi Yogita Maam , At 4:15 you showed in diagram that Factory Class contains no implementation .That is not the case as in factory class,factory method should contain the logic to determine one of the concrete class.In the slide you showed , logic to detremine which subclass is resposibility of subclass but thats not the case as logic to determine which concrete class is the responsibility of Factory class . Could you please clarify on this ?
    package com.journaldev.design.factory;
    import com.journaldev.design.model.Computer;
    import com.journaldev.design.model.PC;
    import com.journaldev.design.model.Server;
    public class ComputerFactory {
    public static Computer getComputer(String type, String ram, String hdd, String cpu){
    if("PC".equalsIgnoreCase(type)) return new PC(ram, hdd, cpu);
    else if("Server".equalsIgnoreCase(type)) return new Server(ram, hdd, cpu);

    return null;
    }
    }

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

      It means no implementation to initialise the actual object creation :)

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

      @@sudocode Yes .But thta's not correct.Initialization to create actual object is always done in factory class.see below code 2 code from geekfor fees and journaldev .
      public class NotificationFactory {
      public static Notification createNotification(String channel)
      {
      if (channel == null || channel.isEmpty())
      return null;
      switch (channel) {
      case "SMS":
      return new SMSNotification();
      case "EMAIL":
      return new EmailNotification();
      case "PUSH":
      return new PushNotification();
      default:
      throw new IllegalArgumentException("Unknown channel "+channel);
      }
      }
      }
      public class ComputerFactory {
      public static Computer getComputer(String type, String ram, String hdd, String cpu){
      if("PC".equalsIgnoreCase(type)) return new PC(ram, hdd, cpu);
      else if("Server".equalsIgnoreCase(type)) return new Server(ram, hdd, cpu);

      return null;
      }
      }

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

      I agree with Saumitra Saxena. In your example also CourseFactory has logic to initialize object of concrete class like HLD, LLD and not the concrete class has that switch case logic. This is done to ensure only Factory class is open for changes and rest are closed for modifications.

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