#48 What is Inheritance in Java

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ต.ค. 2024

ความคิดเห็น • 27

  • @bhuvanprasathk
    @bhuvanprasathk ปีที่แล้ว +25

    No one else can teach like you man! you are helping people a lot. Thank you naveen.

  • @Praveen_Chathukutty
    @Praveen_Chathukutty 3 หลายเดือนก่อน

    His simplicity makes things understandable for mediocre programmers like me, and the wits and jokes makes his videos a pleasure to watch. Thank you Telusko and Naveen for all the long years of tutorials... Praveen Chathukutty, from Kerala.

  • @aakashsinha9641
    @aakashsinha9641 ปีที่แล้ว +21

    "redundancy is crime"
    - navin reddy

  • @ShahriarShihab-lm8jd
    @ShahriarShihab-lm8jd ปีที่แล้ว +4

    your videos helped me a lot sir,Thank you so much..

  • @_Ashwathama
    @_Ashwathama 16 วันที่ผ่านมา

    🛐thanks! learning a lot sir!

  • @rohannJhaaaa
    @rohannJhaaaa 18 วันที่ผ่านมา

    I seriously waste my 2 years, if you met me before sir, I'll be good. Since last 7 days I feel super confident. Thank you sir

  • @옥자-p5r
    @옥자-p5r ปีที่แล้ว +2

    What an amazing lecture! I have one question. In this case, I think it is much easier if I just create two those methods, multi() and div(), in the class Calc. But why we should make another class, AdvCalc?

    • @GOKULK-ll8ur
      @GOKULK-ll8ur ปีที่แล้ว

      so that we have two calculators basic and advanced

  • @niksyt8666
    @niksyt8666 ปีที่แล้ว +2

    actually the your course is not for just the beginner … but what’s the good thing is that .. suppose there is a IT person who don’t study for a while and now he want to recall all then it’s perfect…. and the way you explain is not quickly hit to the new person but it helps when a person go to interview and if they will explain in your style 😂😂😂😂 it will surely selected bcz you are not tell us theory you tell us all practical knowledge which can be quick adopted by a IT Student 🙇🏻

  • @LovilJacob
    @LovilJacob ปีที่แล้ว

    amazing lecture and lecturer

  • @asif_176
    @asif_176 2 หลายเดือนก่อน

    great, sir!

  • @kvelez
    @kvelez ปีที่แล้ว +2

    public class Main{
    public static void main(String[] args) {
    Advanced obj = new Advanced();
    System.out.println(obj.add(8, 3));
    System.out.println(obj.mult(8, 3));
    System.out.println(obj.sub(4, 9));
    System.out.println(obj.div(4, 9));
    }
    }
    class Calc{
    public int add(int n1, int n2){
    return n1 + n2;
    }
    public int sub(int n1, int n2){
    return n1 - n2;
    }
    }
    class Advanced extends Calc{
    public int mult(int n1, int n2){
    return n1 * n2;
    }
    public int div(int n1, int n2){
    return n1 / n2;
    }
    }

  • @mrprofomedia
    @mrprofomedia 2 หลายเดือนก่อน +1

    hold "Shift+Alt+arrow down" to copy the lines in vscode

  • @OneBitePls001
    @OneBitePls001 10 หลายเดือนก่อน

    amazing dude💯💯💯

  • @Sehore_Defence_Academy
    @Sehore_Defence_Academy ปีที่แล้ว +3

    why you upload sir this series and you have also paid batch binary java batch so is difference in those course

    • @bhuvanprasathk
      @bhuvanprasathk ปีที่แล้ว

      i think those are live classes.

    • @athul03
      @athul03 ปีที่แล้ว

      Isnt that advanced level of java ?

  • @prathameshpatil1023
    @prathameshpatil1023 11 หลายเดือนก่อน +1

    Sir in my laptop it doesn't working with public keyword for classes.but without public keyword it executes
    Why this problem is occurring

    • @_sebastian1734
      @_sebastian1734 8 หลายเดือนก่อน

      Hi, to use the public keyword, make sure you are out of the main class or package. Use a separate class name. i.e Student.java then make it public class Student{}. in the main class or package we can only use the default class

    • @rakeshreddy9145
      @rakeshreddy9145 8 หลายเดือนก่อน

      class name should be same as file name if you use public keyword.

  • @RangaRajuth
    @RangaRajuth ปีที่แล้ว

    Simple superb

  • @satishkk7548
    @satishkk7548 7 หลายเดือนก่อน

    Nice video

  • @c4domer
    @c4domer 8 หลายเดือนก่อน +3

    why are tthere no coments

    • @SanataniRishu02
      @SanataniRishu02 2 หลายเดือนก่อน +1

      Because we don't have any issues we are understanding it without doubt

  • @satishkk7548
    @satishkk7548 7 หลายเดือนก่อน

    Nice

  • @libspacemacj4590
    @libspacemacj4590 10 หลายเดือนก่อน +11

    Telusko :"You know vhyyy?"