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

Поділитися
Вставка
  • Опубліковано 17 гру 2024

КОМЕНТАРІ • 81

  • @curiossoul
    @curiossoul 2 роки тому +17

    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 роки тому +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 2 роки тому +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 2 роки тому

      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 Рік тому +5

    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.

  • @mireazma
    @mireazma Рік тому +3

    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.

  • @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 ☺

  • @lapimpale
    @lapimpale 2 роки тому +7

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

    • @sudocode
      @sudocode  2 роки тому

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

    • @lapimpale
      @lapimpale 2 роки тому +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

  • @mireazma
    @mireazma Рік тому +2

    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().

  • @srivatsa1193
    @srivatsa1193 Рік тому +1

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

  • @shabanaasmi2807
    @shabanaasmi2807 Рік тому

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

  • @manishperiwal515
    @manishperiwal515 2 роки тому +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 Рік тому

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

  • @felipekobra
    @felipekobra 11 місяців тому

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

  • @ganeshkhirwadkar4127
    @ganeshkhirwadkar4127 2 роки тому

    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  2 роки тому

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

    • @ganeshkhirwadkar4127
      @ganeshkhirwadkar4127 2 роки тому

      @@sudocode Pakka

  • @sanjayyadav-tw8mt
    @sanjayyadav-tw8mt 2 роки тому

    Crystal Clear Explanation. Thanks!

  • @gokulsrinivasan8563
    @gokulsrinivasan8563 9 місяців тому

    I really love your video editing work 😍

  • @pauladityashaw4590
    @pauladityashaw4590 2 роки тому +2

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

  • @ronitnath3786
    @ronitnath3786 2 роки тому +1

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

  • @bollywood90ssongs65
    @bollywood90ssongs65 Місяць тому

    does it corelate to open / close principle. if one of the new requirement there will be modification , any alternative for this ?

  • @SaiSumanthKovuru
    @SaiSumanthKovuru 9 місяців тому +1

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

  • @nitin4598
    @nitin4598 2 роки тому +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

  • @Dinesh8426
    @Dinesh8426 2 роки тому

    Supreb expiation ❤️👌👌
    You always made easy 😊

  • @jagmohangautam1062
    @jagmohangautam1062 2 місяці тому

    In which of the scenarios would you use factory pattern and why?
    Consuming a service
    Complex Validation
    Logging
    Data Binding
    None of the Above

  • @saumitrasaxena8470
    @saumitrasaxena8470 2 роки тому +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  2 роки тому

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

    • @saumitrasaxena8470
      @saumitrasaxena8470 2 роки тому

      @@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 2 роки тому

      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.

  • @manishkumarprajapati6280
    @manishkumarprajapati6280 Місяць тому

    Wait ! Whats that VS Code extension for generating class diagram

  • @mateuszmoscicki308
    @mateuszmoscicki308 2 роки тому +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  2 роки тому

      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 2 роки тому +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 2 роки тому

      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.

  • @ankurcharan
    @ankurcharan 2 роки тому

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

  • @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

  • @jasper5016
    @jasper5016 Рік тому

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

  • @amritprakash4264
    @amritprakash4264 8 місяців тому

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

  • @akjoker79
    @akjoker79 3 місяці тому

    This is simple factory. The factory method pattern by GOF will have subclasses create the instances

  • @venkatah9847
    @venkatah9847 2 роки тому

    Thank you for the video on an import pattern 👍

  • @108vicky
    @108vicky Рік тому

    Nice explained

  • @manavalanmichael8517
    @manavalanmichael8517 2 роки тому

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

  • @dibyaprakashpandey7857
    @dibyaprakashpandey7857 2 роки тому

    Excellent 👌👍

  • @UditSharma124
    @UditSharma124 11 місяців тому

    Can we have example of strategy DP too?

  • @prataptyagi5082
    @prataptyagi5082 Рік тому

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

  • @savita6670
    @savita6670 2 роки тому

    After long time

  • @sanketh768
    @sanketh768 Рік тому

    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 ?

  • @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

  • @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.

  • @keshavmaheshwari521
    @keshavmaheshwari521 9 днів тому

    what about abstract factory pattern?

  • @divyangdesai1634
    @divyangdesai1634 9 місяців тому

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

  • @khushboopriya9895
    @khushboopriya9895 2 роки тому

    Where can I find the code?

  • @AbhishekYadav-fb3uh
    @AbhishekYadav-fb3uh 2 роки тому

    thanks for such video

  • @jimbo0o
    @jimbo0o Місяць тому

    👏👏👏👏👏

  • @koteshwarraomaripudi1080
    @koteshwarraomaripudi1080 2 роки тому

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

  • @saravanakumarradhakrishnan756
    @saravanakumarradhakrishnan756 Рік тому +3

    This is simple factory only. Not a factory pattern.

    • @sivaprasad6621
      @sivaprasad6621 5 місяців тому

      Yes. I was looking for this comment.

  • @zeeshan4989
    @zeeshan4989 2 роки тому

    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 !

  • @AdityaKumar-iy8vl
    @AdityaKumar-iy8vl 5 місяців тому

    Can I get the source code please?

  • @itzak0422
    @itzak0422 2 роки тому

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

    • @premmahto4855
      @premmahto4855 2 роки тому +1

      ofcourse

    • @premmahto4855
      @premmahto4855 2 роки тому +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

  • @CodingJoySoul
    @CodingJoySoul Рік тому

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

    • @sudocode
      @sudocode  Рік тому

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

  • @arupde6320
    @arupde6320 2 роки тому

    complete the playlist quickly

  • @nathamuni9435
    @nathamuni9435 Рік тому

    KINDLY SHARE THIS FACTORY METHOD PACKAGE THAT U HAVE IMPLEMENTED

  • @chandlerbing8164
    @chandlerbing8164 11 місяців тому

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

  • @NaturalHabitat52
    @NaturalHabitat52 11 місяців тому

  • @ChandraTech52
    @ChandraTech52 2 роки тому