Bridge Pattern - DESIGN PATTERNS (C#/.NET)

Поделиться
HTML-код
  • Опубликовано: 16 сен 2024

Комментарии • 18

  • @robertastutlys8641
    @robertastutlys8641 2 года назад +2

    I was confused about the bridge pattern but now it's 100% clear ! thanks

  • @I_c_a_r_u_S_S
    @I_c_a_r_u_S_S 3 месяца назад

    Very good explained. This is the best explantation I found in three languages :D

  • @DmitryIvanov-sj2tt
    @DmitryIvanov-sj2tt Год назад +1

    Thank you! Very useful!!

  • @Robin-uu4wx
    @Robin-uu4wx 3 года назад +3

    I like these kind of videos! Very resourcefull

  • @mireazma
    @mireazma Год назад

    In the first scenario I would do:
    1. Make the different book types into regular classes instead of abstract. This because there's no added technical functionality specific to Autobiography for instance. Each of the book types serves as a final "template".
    2. GetBookContent() is semantically identical in all book types and should be up one level like Publish() in IBook.
    So as mentioned at 3:01 you wouldn't need 3 new classes whenever you want to publish a book, but 3 objects.

  • @jorgellanque7704
    @jorgellanque7704 Год назад

    I love your explanation

  • @alexeylobankov
    @alexeylobankov 3 года назад +1

    Nice. Clean explanation

  • @windowsbuilderthegreat3121
    @windowsbuilderthegreat3121 3 года назад +2

    It’s funny that you had the phone call during the video

  • @clickdraw9762
    @clickdraw9762 2 года назад +1

    Thank you!

  • @majormartintibor
    @majormartintibor 3 года назад

    Fantastic video!

  • @foxred2380
    @foxred2380 3 года назад

    Very useful video, congrats

  • @AKASHKUMAR-we5hg
    @AKASHKUMAR-we5hg 3 года назад +1

    how it is different from strategy pattern?

  • @mrsajjad30
    @mrsajjad30 3 года назад

    Well I did not understand the whole point of creating extra interfaces. May be I did not understand the example you are trying to explain. Will watch this video a few more times before it makes sense to me.

  • @alexandero.9413
    @alexandero.9413 2 года назад

    Man, I really love your videos. I will set up a Paypal Acc just to be able to say thanks and donate

    • @SingletonSean
      @SingletonSean  2 года назад

      Thanks Alex, I'm glad these videos are helpful!

  • @dietrevich
    @dietrevich 2 года назад

    I feel this video was quite a bit rushed for the content, and as such the example wasn't really as effective in explaining the pattern. I understand you know the content very well but as an explanation video you need to meet your audience needs too.

  • @utkuc6168
    @utkuc6168 Месяц назад

    Please do not code the data as a class for the example. No one codes this way; it only confuses people.