Java 1 ObjectOrientedProgramming

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

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

  • @XajiDahir
    @XajiDahir 20 дней назад

    I love the way this man teaches. Thank You.

  • @luoning817
    @luoning817 4 года назад +5

    A very nice Professor takes time to teach. I never have a Professor like this in my life before.

  • @mohammedchowdhury1529
    @mohammedchowdhury1529 5 лет назад +5

    This is one of the best lesson in the world. Thank you for making this so easy to understand.

    • @ericabutts2906
      @ericabutts2906 4 года назад

      Mohammed Chowdhury I totally agree. It was worth a lot

  • @Ioden
    @Ioden 11 месяцев назад

    I actually had a good CS 101 professor -- don't want to trash talk him in absentia -- but this is still easier to understand than the way he explained classes and inheritance. Thank you!

  • @gyurebalint
    @gyurebalint 4 года назад +1

    This is low-key the best ASMR I came across with

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

    Thank you so much Dr Rob Edwards for these amazing set of lectures

  • @KenanYusubov
    @KenanYusubov 5 лет назад

    Thanks a lot for your best explanation. You are the best.

  • @Hanhchi89
    @Hanhchi89 4 года назад

    Thank you so much. I want to go to SDSU to learn more from you professor.

  • @almasmirzakhmetov8590
    @almasmirzakhmetov8590 5 лет назад

    I like your lessons .I wonder where was I all the time before.

  • @calviethang7139
    @calviethang7139 5 лет назад

    Thank you. This is amazing content

  • @juliawenkmann8510
    @juliawenkmann8510 5 лет назад

    You're amazing, thank you so very much!!

  • @shiroyasha_007
    @shiroyasha_007 6 лет назад +9

    6:05 lol

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

    I thank you!

  • @caincain1312
    @caincain1312 5 лет назад +1

    can anyone tell under which circumstances we define object like this and why we may want this?:
    student s = new undergrad();

    • @Jake-wn5hp
      @Jake-wn5hp 5 лет назад

      See this tutorial on polymorphism in Java www.tutorialspoint.com/java/java_polymorphism.htm

    • @pranavkasar829
      @pranavkasar829 4 года назад

      this is actually method hiding concept of polymorphism..
      where Parent(student) class variable s is used to hold the object of child(undergraduate) class..............
      it is allowed in java
      but vice versa is not allowed.