#22 Class and Object Practical in Java

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

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

  • @user-benjaminJohn
    @user-benjaminJohn Год назад +28

    Telusko, this video is brillant! NO ONE has been able to articulate this to me in such a clear way. I wish I had found this video YEARS ago. 🙏 Your channel is pure🔥!

  • @MuthuAnushya
    @MuthuAnushya 11 месяцев назад +3

    Hey vera level bro 🎉 i can understand concepts very well it's my third days of java coding journey ,i continuously watching your tutorial and i follow ur tutorial only🎉.thank you 🎉🎉

  • @mosshead_vinsmoke
    @mosshead_vinsmoke 2 месяца назад

    I really appreciate you took the time to actually explain why the syntax works the way they are unlike others who just tell us
    do this
    Calculator obj = new Calculator();
    and not explain what each is and does

  • @rohithvarma6763
    @rohithvarma6763 9 месяцев назад +4

    probably the best java teacher in the world

  • @shaikmansoor223
    @shaikmansoor223 9 месяцев назад +5

    00:05 In this video, we learned about classes and objects in Java.
    01:57 Design your objects by separating manufacturing and designing
    03:49 Methods in Java must specify access and return type
    05:39 Designing a class with a variable and a method
    07:35 To create an object, you need to specify the type and use the 'new' keyword.
    09:40 How to create an object in Java
    11:47 Create a variable called R and assign the sum of num1 and num2 to it
    13:42 The video discusses how to create a class in Java and use it to add two values.

  • @nareshgajula
    @nareshgajula Год назад +20

    Good but difficult for the beginners to understand the depth of your explanation!

  • @Shubham-fk4is
    @Shubham-fk4is Год назад +45

    It was easy in Python, but unable to understand in Java.

  • @aishwaryab673
    @aishwaryab673 7 месяцев назад +5

    Hey TELUSKO, this was my first comment on RUclips because I was such an introvert to even make a comment, The way you teach I admire a lot and this video is incredible and it paves me to think of exploring all your courses!!!! Thanks again Telusko !!

    • @Makbang-b9b
      @Makbang-b9b Месяц назад

      In RUclips they don't reavel your identity so what happened if you are an introvert or extrovert
      Sorry if there is any grammatical mistakes

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

    I really like your tutorial videos.
    This is like excel VBA (back in the days) where you could import a sub from a different sheet.

  • @prasantdas587
    @prasantdas587 7 месяцев назад

    You are an amazing instructor. It’s not just how to write the code but why to do it certain way.. brilliant..

  • @chichhasquad2342
    @chichhasquad2342 9 месяцев назад +2

    Never been this much easy. Hatts off bro .

  • @chinyamaraphael-sp6wt
    @chinyamaraphael-sp6wt 6 месяцев назад +1

    I don't know how I can express myself. We did objects with my lecturer but I did not understand what he was saying until I found this video. You are a redeemer. ❤

  • @Salimuamiri-c3h
    @Salimuamiri-c3h 10 месяцев назад +1

    Congratulation you made java so easy in this short concept of object and class in java💯

  • @91-ritikjain36
    @91-ritikjain36 Год назад +5

    sir you are the best teacher sir plzz create a new series on jsp and servlet

  • @akankshamishra1262
    @akankshamishra1262 10 месяцев назад

    Hi, Thanks a lot for excellent explanation, very understandable to beginners, I'm learning java for automation selenium with your video.💯

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

    your all videos is excellent! i wish i had found this collection years ago.❤

  • @MADDILAKSHMINARAYANA
    @MADDILAKSHMINARAYANA Год назад +1

    it was an excellent explanation. Very understandable to beginners.

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

    literally Legend ! I've purchased a paid course but i learn more there

  • @fezaiozcan2227
    @fezaiozcan2227 Год назад +4

    absolutely best tutorials about Java! thanks:)

  • @mango-strawberry
    @mango-strawberry Год назад +3

    Literally perfect explanation

  • @RK_Universe
    @RK_Universe 8 месяцев назад +2

    can't find main(String[]) method in class-How to solve the issue.Pls comment sir.

  • @Trunk_Tech
    @Trunk_Tech Год назад +1

    Am enjoying every bit of these lessons......Kudos

  • @bandarisailikhitha9865
    @bandarisailikhitha9865 10 месяцев назад

    Thanks navin, you are awesome

  • @photolab6712
    @photolab6712 11 месяцев назад +1

    superb lecture...

  • @shobhashobha2614
    @shobhashobha2614 9 месяцев назад +3

    Hi sir
    Which language is best for preparing dsa?

  • @kanushagrawal7192
    @kanushagrawal7192 6 месяцев назад +2

    why are we using diffrent classes for adding where it can be done easily in one class only??? why to complicate things???
    and also did not understand anything rest all the videos were superb but i dont know why

  • @pydisettymahesh9655
    @pydisettymahesh9655 10 месяцев назад

    it is an exaple of inheritance

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

    Bro when ur explaining explain from zero . Ur explanation is like ur teaching to intermediate level students.

  • @shandeshchaudhary-ps1tz
    @shandeshchaudhary-ps1tz 10 месяцев назад

    you are the best man

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

    Why are we creating a variable int a in the calculator class?

  • @rsvcreations7450
    @rsvcreations7450 4 месяца назад

    sir when i am trying this i am getting error that "can't find main method in calculator class"

  • @kirubasathish3683
    @kirubasathish3683 Год назад +3

    sir we can add the number like this also sir?
    class Calculator{
    int a;
    public int add()
    {
    System.out.println("add");
    return 12 + 12;
    }
    }
    public class java1 {
    public static void main(String a[])
    {

    Calculator calc = new Calculator();
    int result = calc.add();
    //int result = num1 + num2;
    System.out.println(result);

    }
    }
    and good explanation sir

  • @nandasiddiksha5534
    @nandasiddiksha5534 Год назад +2

    how to get user input?? Instead of assigning values to variables..

    • @__sam_danielW
      @__sam_danielW Год назад +3

      We have to import scanner so that we can get the input from the user

  • @tekkishort9018
    @tekkishort9018 10 месяцев назад +2

    U need to redo this part all parts were clear and concise until this video it's very bad redo it

  • @yitingchen8278
    @yitingchen8278 Год назад +1

    Good explanation!

  • @_Deepak__Verma
    @_Deepak__Verma 4 месяца назад

    Instead of creating classes can't we make a complex function that works exactly the same way then why use class

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

    can u pls explain class and object again this videos are confusing🤔🤔

  • @rockybalboa6969
    @rockybalboa6969 Год назад +1

    14:21 summmary

  • @pinkeykumari1312
    @pinkeykumari1312 8 месяцев назад

    my java file created but class not loaded
    then what to do?

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

    Please try and use relevant examples while explaining, using examples which are in no way connected to the topic makes understanding difficult for us. The Python course was very good, but this playlist seems to be derailed of its objective of making things easier for us.

  • @timsy4401
    @timsy4401 Год назад +4

    this video is not much clear

  • @divakarpareek9466
    @divakarpareek9466 Год назад +2

    @telusko -- I must say your previous Java series of 6 hrs was much better then this one. I have come to 22nd video, in almost each video you are struggling to put clear example and changing in between that's frustating . It should be pre prepared.

  • @ourera2279
    @ourera2279 6 месяцев назад

    does anyone know where are the pratice questions for these ?

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

    How did you spawn everything on the screen at start ? lol why you not type when we see?

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

    sir,Increase the font size

  • @sonaligaikwad-zo5ds
    @sonaligaikwad-zo5ds 5 месяцев назад

    But in calculator class main method is not declare

    • @vishwajeetdalvi
      @vishwajeetdalvi 11 дней назад

      Need to declare it only once, and you can do it any class.

  • @nprince411
    @nprince411 9 месяцев назад

    tqs sir

  • @chaitanyathorat8429
    @chaitanyathorat8429 Год назад +1

    Perfectooo👌👌

  • @sheiduwgwjd
    @sheiduwgwjd 6 месяцев назад +1

    Confusing

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

    Super

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

    not working for me even if I have the same codes as you. Giving - error: can't find the main(String[]) method in class: Calculator.
    Solution?

    • @naveenrajanaveen6462
      @naveenrajanaveen6462 Год назад +2

      Put (String args[]) instead of (String [])
      You want to give a name like args, abc, etc..

    • @rutulkarbhari4963
      @rutulkarbhari4963 Год назад +1

      @@naveenrajanaveen6462 was helpful. And i also wanted to thank you sir🙏.

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

      ​@@naveenrajanaveen6462 but it shows error in main method

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

      define calculator class after the hello class, then it will work fine@@miethrayan

  • @manojm1853
    @manojm1853 8 месяцев назад

    2:57 my iPhone says the same

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

    Thanks for that.
    i have a project in java will you help me on that
    payable

  • @rohitn6063
    @rohitn6063 7 месяцев назад

    14:37

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

    wow

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

    Thank u so much 💯❤️

  • @RamgiriRachaRayudu
    @RamgiriRachaRayudu 7 месяцев назад

    🥳

  • @darshilchitranshi592
    @darshilchitranshi592 10 месяцев назад +2

    14:21 summmary