Runtime Polymorphism || OOPS Concepts in java By Som Sir

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

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

  • @sharique115
    @sharique115 8 лет назад +1

    Awesome explanation of Dynamic Dispatch it's confusing me but now i'm clear about that. thank you very much.

  • @SafdarAliShah_TimeTraveler
    @SafdarAliShah_TimeTraveler 7 лет назад +1

    Very nice Lecture ...Respect from Pakistan...

  • @MrOgle1000
    @MrOgle1000 8 лет назад +1

    nicely explained sir

  • @kushsingh4543
    @kushsingh4543 8 лет назад

    superb sir jee...

  • @AnkitSharma-rg8zk
    @AnkitSharma-rg8zk 8 лет назад

    awesome

  • @vnmusic5216
    @vnmusic5216 8 лет назад +1

    awesome explanation but one question that u have told we can call method methods through super keyword
    plz sir can u write that code in comments it will be really helpful for me

    • @somprakashrai1
      @somprakashrai1 8 лет назад +1

      Class A{
      void m1(){
      }
      }
      class B extends A{
      void m1(){
      Overrides M1() of class A. here if you want to use super class implementation of m1 method then
      super.m1();
      }
      }
      Hope My Answer satisfying you...

  • @SauravKumar-oc3dq
    @SauravKumar-oc3dq 7 лет назад +1

    sir try to upload video regularly

    • @JTCINDIA
      @JTCINDIA  7 лет назад

      +Saurav Kumar sure we have uploaded many video.. . Please check the description for other videos link.. thanks

  • @unishrijal6708
    @unishrijal6708 7 лет назад +1

    Sir would you please make me tutorial on data abstraction in java

    • @JTCINDIA
      @JTCINDIA  7 лет назад

      Thanks for showing your interest in our Video.. Will Surly Try to upload as soon As possible..

    • @JTCINDIA
      @JTCINDIA  7 лет назад

      go through this link..ruclips.net/video/S9ohXvptpLc/видео.html

    • @unishrijal6708
      @unishrijal6708 7 лет назад

      Thnks for your link sir

  • @isaifahmad
    @isaifahmad 7 лет назад

    The TV remote example used for explaining Polymorphism is not correct; the example is like Setter and Getter for an object. Switching On/Off is a method of the Object Remote which does not expose the different behaviour of that object hence it is not an example of Polymorphism.

    • @JTCINDIA
      @JTCINDIA  7 лет назад

      @saif Ahmad thanks for Watching our Videos.. Please Watch Other Partalso of this video .. the Example of T.V Remote has been given just to give one ref. of that. Because Setters and Getters Beginners can't understand..