Java objects (OOP) ☕

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 ธ.ค. 2024
  • Java object oriented programming tutorial for beginners
    #java #object #oriented #programming #tutorial #beginners

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

  • @BroCodez
    @BroCodez  4 ปีที่แล้ว +116

    //*********************************************
    public class Main {
    public static void main(String[] args) {

    Car myCar1 = new Car();
    Car myCar2 = new Car();
    System.out.println(myCar1.make);
    System.out.println(myCar1.model);
    myCar1.drive();
    myCar1.brake();
    }
    }
    //*********************************************
    public class Car {
    String make = "Chevrolet";
    String model = "Corvette";
    int year = 2020;
    String color = "blue";
    double price = 50000.00;

    void drive() {
    System.out.println("You drive the car");
    }
    void brake() {
    System.out.println("You step on the brakes");
    }
    }
    //*********************************************

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

      thank you

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

      Vinaka bro

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

      The second "public class Car" should just be "class Car" i think

  • @hiiexisthiiexist1284
    @hiiexisthiiexist1284 ปีที่แล้ว +54

    This guy will almost singlehandedly turn me into a programmer. Better than any other resource.

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

    This is my 26th video of Java Tutorial and I'm watching chronologically from the very first video of the Java Tutorial literally this is the most underrated channel with the sublime quality. There are so many video for Java Tutorial and this one is adequate the videos are so short and so lucid in terms of understandable. All I wanna say is that the way BRO interpret is so beautiful that any layman will able to understand. Literally there are channels which are so in hype in category of Programming but they lack the quality of interpretation which BRO possess. Do share with your friend so we can help running this channel

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

      Exactly. Facts. He explains the Java concepts so well!

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

      Agree 100%
      I was gonna coment for myself but I saw your's and I think you explain perfectly what we all feel

    • @EdgeLordOmen
      @EdgeLordOmen 8 หลายเดือนก่อน +1

      Typically, programming tutorial videos feature programmers who continually show their faces as if they aim to be influencers, forgetting that they're on an educational channel. They should focus on demonstrating how to code and provide clear explanations. There's no need for them to repeatedly show their faces, which can be distracting and annoying to viewers.

    • @aryantiwari602
      @aryantiwari602 10 วันที่ผ่านมา

      @@mateoalizar2578 jh

    • @aryantiwari602
      @aryantiwari602 10 วันที่ผ่านมา

      jsdhfwe

  • @vincentchoo7471
    @vincentchoo7471 4 ปีที่แล้ว +41

    I have learned a lot from your tutorials.

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

    I just wanted to say thank you, your videos are crystal clear been struggling to understand the OOP concept but finally now it is all making sense. once again , thank you.

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

    0:26, I don't know why but the "oop" just killed me

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

    I'm in my second year of Computer Science and have been struggling SO MUCH to find someone that explains things in a logical simple way. I'm also a slow learner and always need context and concrete examples to understand. This channel is saving my LIFE!

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

    You just saved my brain from exploding! I've been looking for a few hours on how to "grasp" this Objects and Classes.. You were able to clear it up better than the other video's and my Crash Course for Java. Thanks!!!

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

    And this is why you're my favorite Java channel! You made a thing, that was melting my brain, easy and understandable!

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

    Your tutorials are truly helpful for me in becoming a successful software engineer. Thank you for providing such valuable resources!

  • @funfacts3.1415
    @funfacts3.1415 6 หลายเดือนก่อน +2

    thank you so much
    i wouldn't have passed my test without you and your series

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

    Actually testing myCar2, see the problem then proceed to teach how to fix the problem is such a good interactive way to teach that makes the audience do some active learning. I was falling a sleep on my college's java objects video and you conveyed what I needed to learn in 1/4th of the time without me falling a sleep. Thank you.

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

    This is the best Java tutorial for beginners, so you can learn Java and English in one hit. Please keep going! I vote for Java advance tutorial. Thanks a lot Bro

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

    Just leaving a comment to help you out because you are REALLY helping me out. Thank you.

  • @NitaiZohar
    @NitaiZohar 7 หลายเดือนก่อน +1

    thnak you much bro you are saving my life

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

    i dont usaualy comment on videos cause am lazy but I gotta say after watching 4 videos on the topic yours is the best! Straight to the point and with quick and easy to understand examples uwu

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

    Thank you so much brother!

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

    Awesome video, awesome playlist, all-around awesome channel !

  • @berry-ge3xv
    @berry-ge3xv ปีที่แล้ว +2

    thank you so much! been watching ur sql and css series. Now onto java and python for interview revision. You don't know how much you've helped me

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

    I normally do not comment on a TH-cam Video or watch a full a series. You have made it easy to understand and s I can not wait to finish all of them!!! words aren't enough to express my appreciation!

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

    Mate don't feel bad because you channel is small right now . You're good work helps lot of people . And I am sure one day your channel will hit good number of subscribers .

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

    Thanks you !!
    Java OOP has been challenging to me a lot this week. I am more than thankful when I see your channel and the content of this video. Thanks

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

    You are literally the best tutor one could ask for. Thanks bro
    U even helped me out in html thanks 😊😊

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

    Literrly you define it very well after watching a tons of videos I've understand it from your videos

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

    This lesson is enlighting, for the first time you understand whats behind the Scanner method you are using like always.

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

    You know you’re a programmer when you copy paste a 5 letter word instead of just typing it

  • @타스-g6z
    @타스-g6z 3 ปีที่แล้ว

    From S.Korea... I learned lots of useful things from all of your lectures, so appreciate!

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

    The more I watch your videos, the more I admire your work. This is a cool stuff, Bro. Thank you

  • @makankosappo8381
    @makankosappo8381 2 ปีที่แล้ว

    helping me learning programming every day. thank u so much!

  • @kishanpareek2848
    @kishanpareek2848 2 ปีที่แล้ว

    Awesome! You Explained classes and object in very interesting way.

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

    This guy helped me so much that I am literally mad if I am looking for a Java concept and he doesn't have a video on it!

  • @timyoung9562
    @timyoung9562 ปีที่แล้ว +1

    You are awesome
    Love from fiji

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

    great video!!! I'm infinitely grateful for your dedication and big heart to share this knowledge with the world. Thank you soo much

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

    This was the only the made sense to me.Thank you!

  • @omardumet120
    @omardumet120 4 ปีที่แล้ว +1

    simple yet concise

  • @Frampini
    @Frampini 9 หลายเดือนก่อน

    Hey BroCode! You're videos have really been helping me through college, I just wanted to say thank you!

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

    Thank you, I’ve learn a lot! You’re the best!

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

    Your videos are more useful than udemy courses. Thanks

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

    I just wanted to say thank you for your amazing video!! Your video help me understand a lot about java programming language. Keep up your good work bro!!

  • @Joshua_t_
    @Joshua_t_ 2 ปีที่แล้ว

    this is one of the most important videos in the series and is explained very well with a good example

  • @afd6875
    @afd6875 6 หลายเดือนก่อน

    Thank you so much for this amazing course!

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

    I mean!! Where have you been my whole 2 month semester!! Thaaank you!! This really clearify everything!

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

    you are the best teacher that i know. thank you bro!

  • @habibullahmahbobi7723
    @habibullahmahbobi7723 2 ปีที่แล้ว

    this video really helps me learn object in java . thanks

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

    Your videos are the best for both revision and learning👍

  • @joshbenjamin1100
    @joshbenjamin1100 2 ปีที่แล้ว

    You're right: the 2020 Chevy Corvette does look nice! Great video; looking forward to the next one!

  • @yutinggu3652
    @yutinggu3652 ปีที่แล้ว +1

    My professor just read the PPT and makes me confused all the time . This video is awesome, I really appreicate.

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

    Thank you for the videos!

  • @harjotsingh9894
    @harjotsingh9894 3 ปีที่แล้ว

    Great video.much easier explanation

  • @stevewilliams6768
    @stevewilliams6768 4 ปีที่แล้ว +1

    thanks. you are my favourite programmer 🥳

  • @nilanjandey9604
    @nilanjandey9604 8 หลายเดือนก่อน +2

    class BroCode{
    String name = "Bro Code";
    String descrption = "A youtube Channel";
    String video = "Classes and Objects";
    public void thanks()
    {
    System.out.println("Thanks to bro code");
    }
    public void learnt()
    {
    System.out.println("Today i learned something new");
    }
    }
    class MAIN
    {
    public static void main(String args[])
    {
    BroCode bro = new BroCode();
    System.out.println("Today i am watching a video on "+bro.name+" which is a "+bro.descrption+" about "+bro.video);
    bro.thanks();
    bro.learnt();
    }
    }

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

    Best channel to learn coding!

  • @hesham4744
    @hesham4744 2 ปีที่แล้ว

    this channel is the best i swear

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

    This man is getting me a new wholw career,no way i can thamnk u enough

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

    personally I love your work!

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

    I've bought the best seller course on Udemy, but I am keep revisiting yours no matter what. Your way of explaining is GOD Tier. Thanks for all the free content, wish we could see you on Udemy , with even more elabourated courses. Big respect!!

  • @apex-lazer
    @apex-lazer 2 ปีที่แล้ว

    Word. just beginning my Java journey. Thank you ✌

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

    Ένα από τα βασικότερα μαθήματα αυτής της σειράς μαθημάτων στη Java και τον αντικειμενοστρεφή προγραμματισμό (O.O.P.) είναι τα αντικείμενα (objects).

  • @j.studies2296
    @j.studies2296 11 หลายเดือนก่อน

    May God continue to bless your ministry because you saved me from a breakdown 😂

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

    Thank you so much!
    I stumbled upon your videos looking for an up to date guide on things.
    Currently doing a course and every time they mention a concept i keep thinking "I wonder if bro has done a video on this",
    Was struggling to wrap my head around what classes are, despite how much reading i did on it, so i watched your video, bam, as soon as you explained it, instantly got the concept.

  • @chaithdridi2718
    @chaithdridi2718 4 ปีที่แล้ว +1

    You are doing an amazing job Bro 😍

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

    Your the man bro, I'm using these videos to learn to code, then I'm gonna make a game for my friends.

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

    though I'm not so good in understanding English, it's so easy to learn java with your videos💛

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

    thank you bro u are the real saviour of mine !!

  • @siyabongaZungu-r2c
    @siyabongaZungu-r2c ปีที่แล้ว

    Good explanation, and easy to follow

  • @broderickjohnson7167
    @broderickjohnson7167 3 ปีที่แล้ว

    These videos are so helpful!

  • @IsaacAwad.04
    @IsaacAwad.04 7 หลายเดือนก่อน

    Thank you so much, saved me so many brain cells i was losing it at 1st but it turned out to be easy.

  • @xFree23Stylex
    @xFree23Stylex 4 ปีที่แล้ว +1

    Bro your videos are amazing! Keep up the good work and I hope you'll get the recognition you deserve soon enough.

  • @sahuyuvraj2427
    @sahuyuvraj2427 3 ปีที่แล้ว

    One of the greatest channel i seen ever love you brother❤

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

    Excellent instructions.

  • @cate01a
    @cate01a 4 ปีที่แล้ว +5

    mate you're super helpful! Can't believe your channel still is so small

    • @BroCodez
      @BroCodez  4 ปีที่แล้ว +4

      yeahhh TH-cam doesn't like me I guess lol

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

      @@BroCodez It's okay, we like you a lot.

    • @JehanSaren
      @JehanSaren ปีที่แล้ว +1

      Atleast more 1.2 millions subs😊

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

    Thanks dude, to really understand this I needed to watch this video, do some practice with objects and rewatch this video again)))

  • @woodpecker2230
    @woodpecker2230 3 ปีที่แล้ว

    High quality tutorial Bro, keep the good work.

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

    Bro , I am following your Java playlist ,,, I think probably you explained class and objects in simplest and in a shortest way 🙂
    Others are not bad but they use too much non programming approach by taking too much Real life example and making videos unnecessary long ...
    But I think best way to teach programming is via programming and taking only necessary amount of real life example

  • @AliGh-ic1dn
    @AliGh-ic1dn ปีที่แล้ว

    A very good course thank you so much

  • @Arthur-g5n8q
    @Arthur-g5n8q 6 วันที่ผ่านมา

    how can you be so good at teaching

  • @danny.3036
    @danny.3036 3 ปีที่แล้ว

    Thanks, Bro! ☕ You're awesome!

  • @Katie-zk4xs
    @Katie-zk4xs 2 ปีที่แล้ว +1

    At this point I am just using your videos instead of my class's textbook xD

  • @arkamukhopadhyay2177
    @arkamukhopadhyay2177 4 ปีที่แล้ว +1

    great video

    • @BroCodez
      @BroCodez  4 ปีที่แล้ว

      thanks for watching Arka

  • @katiescape
    @katiescape 6 หลายเดือนก่อน

    Thank you so much for these videos, I have an exam tomoz and you are saving my butt.

  • @sorryferroggiaro2026
    @sorryferroggiaro2026 2 ปีที่แล้ว

    Great video. Thank you.

  • @onecat-f4i
    @onecat-f4i 6 วันที่ผ่านมา

    Thank you! this helped me for school exam❤

  • @ashiqurrahman1385
    @ashiqurrahman1385 9 หลายเดือนก่อน

    Brother you are awesome!

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

    My man u r the best!!

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

    Thanks for the video, bro!

  • @ze_kangz932
    @ze_kangz932 11 หลายเดือนก่อน

    Great stuff! Thanks!

  • @rafalgontarski3254
    @rafalgontarski3254 2 ปีที่แล้ว

    Thanks for this video

  • @shafikkhan-r4l
    @shafikkhan-r4l ปีที่แล้ว

    your good at codes bro. hands up.

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

    Thank u so much sir, you av been a help to me all the time.

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

    i can`t believe that just 6k persons saw this tutorial..
    But the number isn`t a problem, we appreciete everything you are doing that`s why this video has 446 likes and 0 dislikes !

  • @Al-ho8mm
    @Al-ho8mm 2 ปีที่แล้ว

    I’m feeling amaze here

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

    I have learned something thank you

  • @shinkansen1907
    @shinkansen1907 15 วันที่ผ่านมา

    you are godsend, thanks!

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

    You are awesome bro!

  • @nenkovxtr8212
    @nenkovxtr8212 2 ปีที่แล้ว

    You the best, Bro!

  • @cdjosh3568
    @cdjosh3568 4 ปีที่แล้ว

    Very good video Bro I appreciate your work, it's helping me learn!

    • @BroCodez
      @BroCodez  4 ปีที่แล้ว

      Thanks for watching CDJ

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

    I also love cars, how many car lovers are watching this LAMBO, GT, DODGE???🎉

  • @Dev-PauloEd
    @Dev-PauloEd 2 ปีที่แล้ว

    in Brazil we say: Programação Orientada a Objetos (or we can abreviate this to POO)

  • @honoredegg
    @honoredegg 2 ปีที่แล้ว

    Object-oriented programming understood completely. 26th. Thank you, ma Bro Sensei!

  • @Vimukthi_Randunu
    @Vimukthi_Randunu 11 หลายเดือนก่อน

    Explained well....!!