@BroCodez

//*******************************************
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");
	}	
}
//*******************************************

@hiiexisthiiexist1284

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

@arifshaikh4212

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

@rashabayoudh5884

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!

@vincentchoo7471

I have learned a lot from your tutorials.

@eileensibanda7239

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.

@DCMARTIN

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!!!

@pavelkvasnicka6856

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

@aaw9004

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

@grawxxor2820

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

@funfacts3.1415

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

@nilanjandey9604

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();
    }
}


:elbowcough::elbowcough:

@butWhyDad

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.

@JuliHoffman

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

@타스-g6z

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

@NitaiZohar

thnak you much bro you are saving my life

@splatling5271

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

@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!

@drabl0

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

@reptileita

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