The Proxy Pattern Explained and Implemented in Java | Structural Design Patterns | Geekific

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

КОМЕНТАРІ • 34

  • @laith8758
    @laith8758 5 місяців тому +7

    this channel single handedly carrying my course at uni🙏

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

    Explains the concept very well with the correct example... Especially the way you started to explain the concept with what we already learnt is awesome ... Keep it up.🎉🎉

  • @plocastakartica4834
    @plocastakartica4834 5 місяців тому +1

    I've just finished this playlist on design patterns, it's such a well done and structured resource for learning and reference.
    Thanks for these, really helped me learn quick!

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

      Glad it was helpful!

  • @mezamortus
    @mezamortus 2 роки тому +5

    This must be the most underrated channel on youtube for Java folks, Kudos!

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

      Thanks a lot! Am so glad you like our content :)

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

      i agree

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

      @@geekific thanks so much for the examples and graphics you were using to explain
      Thank you geekific

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

    You are the best that I've found to understand this topic. I've checked all the pattern's videos. Thank you, and keep it up with this great work!

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

    Thank you for the crisp and clear explanation. Short snd concise 🔥

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

    Your channel will grow man, high quality!

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

      I appreciate that! Glad you liked our videos :)

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

    This is the first video I have seen of yours, sufficient for subscribing.

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

    Such a quick and simple explanation!

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

    This playlist is 🔥🔥. Thank you.

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

    Easy to understand, thank you

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

    Finally! :-) Awesome explaination 🙂

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

    Very nice explanation as always.

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

    Very nicely explained!! :)

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

    Thank you. It sure was helpful.

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

    excellent work

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

    Well explained. Thank you very much

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

      Glad it was helpful!

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

    When should we implement an interface and have another object as the composite vs directly inherit the object?

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

    Sorry but I cannot find the Interpreter pattern in this Design Patterns playlist?

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

    thank man, good videos

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

    Facade pattern was doing same? by the great playlist..

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

      They are both structural patterns that is why you have them confused, but the façade provides a simplified interface to a library, a framework, or any other complex set of classes, however the proxy, provides a substitute for another object and controls access to that object, allowing you to perform something before or after the request reaches the original object :) Hope this helps!

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

      ​@@geekific kinda yes .. thanks man ..

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

      @@geekific I also found these two patterns similar to Adapter.
      In my view, all three introduce a middle layer between services. The difference being:
      - adapter pattern acts as a translator between two incompatible services
      - facade pattern hides complexity in calling ***a group of classes/services or a library or a framework*** behind a facade
      - proxy pattern abstracts complexity by encasing ***the target object*** behind it(using composition)

  • @LUCASNERVI-g7g
    @LUCASNERVI-g7g Рік тому

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

    Nice. I call this decorator. The difference is really burry.

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

      Thanks! Here is our Decorator Pattern video: ua-cam.com/video/v6tpISNjHf8/v-deo.html, maybe it'll make stuff a bit easier :)