🟢 Introduction to ABAP Object Oriented Patterns

Sdílet
Vložit
  • čas přidán 10. 09. 2024

Komentáře • 12

  • @julionascimento8702
    @julionascimento8702 Před rokem

    It's really very easy to understand! Thank you for your explanation!

  • @cabronazo007
    @cabronazo007 Před rokem

    The demo you give for what you call the "Composite Pattern" is, interestingly enough, a demo that explains perfectly why we would use the "Factory Pattern" = to be able to return different Class types depending on the initial creation values (something we cannot do with the traditional CONSTRUCTOR Method)......................

  • @andreasrother428
    @andreasrother428 Před 10 měsíci

    Very well explained as always.

  • @tongobong1
    @tongobong1 Před 4 měsíci

    You showed an example of the Strategy pattern. The Composite pattern is a structural pattern. The purpose of Composite pattern is to compose a tree of related objects with parent and children relations. The base class of composite objects usually holds one parent object with the base class type and many child objects with the base class type.

  • @henk9453
    @henk9453 Před rokem +2

    Great video, thanks!
    Can you please explain why to prefer composition over inheritance?

    • @sapdevs
      @sapdevs  Před rokem +1

      I wouldn't say that you would prefer one over the other. In fact I don't see the comparison. Inheritance is a fundamental of OO and Composition is a pattern. In fact in order to make Composition pattern work you must use Inheritance. [Thomas Jung]

    • @baca0391
      @baca0391 Před rokem +1

      @@sapdevs I think both are confusing the Composite pattern with composition, which is done via interfaces. Mateusz shared the best resource in ABAP for the composition vs inheritance discussion, which basically boils down to inheritance being difficult to design properly and makes logic hard to reuse outside of sub-classes.

    • @AdityaWaghmare
      @AdityaWaghmare Před rokem

      @@baca0391
      So basically Interfaces >>> Inheritance

  • @memaddy1000
    @memaddy1000 Před 11 měsíci

    I am not too familiar with oops concepts but I have learned that abstract should atleast have one abstract method and these are no implementations of abstract methods in a abstract class, but in last example base abstract class was having only factory method which is not abstract method and also there is implementations of it in the same class

    • @tongobong1
      @tongobong1 Před 4 měsíci

      Yes he is clearly a newbie in OO.

    • @denizaybiberoglu6145
      @denizaybiberoglu6145 Před 7 dny

      Not necessarily, abstract classes can contain abstract methods, which must be redefined in the inheriting classes. You can create abstract classes without any abstract methods. You might be confusing it with interfaces.

  • @renan-ferreira
    @renan-ferreira Před rokem

    Tks for the explanation! Great video