//********************************************* 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"); } } //*********************************************
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
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.
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!
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.
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!!!
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.
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
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 .
I normally do not comment on a RUclips 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!
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
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
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!!
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!!
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(); } }
//*********************************************
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");
}
}
//*********************************************
thank you
Vinaka bro
The second "public class Car" should just be "class Car" i think
This guy will almost singlehandedly turn me into a programmer. Better than any other resource.
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
Exactly. Facts. He explains the Java concepts so well!
Agree 100%
I was gonna coment for myself but I saw your's and I think you explain perfectly what we all feel
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.
@@mateoalizar2578 jh
jsdhfwe
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!
I have learned a lot from your tutorials.
0:26, I don't know why but the "oop" just killed me
I just died
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.
And this is why you're my favorite Java channel! You made a thing, that was melting my brain, easy and understandable!
Thank you so much brother!
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!!!
thank you so much
i wouldn't have passed my test without you and your series
Your tutorials are truly helpful for me in becoming a successful software engineer. Thank you for providing such valuable resources!
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.
thnak you much bro you are saving my life
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
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 .
Awesome video, awesome playlist, all-around awesome channel !
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!
You know you’re a programmer when you copy paste a 5 letter word instead of just typing it
This lesson is enlighting, for the first time you understand whats behind the Scanner method you are using like always.
Just leaving a comment to help you out because you are REALLY helping me out. Thank you.
I normally do not comment on a RUclips 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!
simple yet concise
Literrly you define it very well after watching a tons of videos I've understand it from your videos
The more I watch your videos, the more I admire your work. This is a cool stuff, Bro. Thank you
helping me learning programming every day. thank u so much!
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
You are awesome
Love from fiji
Thank you so much for this amazing course!
Thank you, I’ve learn a lot! You’re the best!
This was the only the made sense to me.Thank you!
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
Good explanation, and easy to follow
Hey BroCode! You're videos have really been helping me through college, I just wanted to say thank you!
You are literally the best tutor one could ask for. Thanks bro
U even helped me out in html thanks 😊😊
Thank you for the videos!
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
UwU
Great video.much easier explanation
From S.Korea... I learned lots of useful things from all of your lectures, so appreciate!
Your videos are more useful than udemy courses. Thanks
personally I love your work!
Awesome! You Explained classes and object in very interesting way.
you are the best teacher that i know. thank you bro!
Thanks for this video
Excellent instructions.
thanks. you are my favourite programmer 🥳
thank you bro u are the real saviour of mine !!
I mean!! Where have you been my whole 2 month semester!! Thaaank you!! This really clearify everything!
My professor just read the PPT and makes me confused all the time . This video is awesome, I really appreicate.
this video really helps me learn object in java . thanks
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!!
This man is getting me a new wholw career,no way i can thamnk u enough
Your videos are the best for both revision and learning👍
great video!!! I'm infinitely grateful for your dedication and big heart to share this knowledge with the world. Thank you soo much
You're right: the 2020 Chevy Corvette does look nice! Great video; looking forward to the next one!
These videos are so helpful!
this is one of the most important videos in the series and is explained very well with a good example
One of the greatest channel i seen ever love you brother❤
Thank you so much, saved me so many brain cells i was losing it at 1st but it turned out to be easy.
May God continue to bless your ministry because you saved me from a breakdown 😂
great video
thanks for watching Arka
You are doing an amazing job Bro 😍
A very good course thank you so much
At this point I am just using your videos instead of my class's textbook xD
Your the man bro, I'm using these videos to learn to code, then I'm gonna make a game for my friends.
this channel is the best i swear
Thanks for the video, bro!
Great stuff! Thanks!
Brother you are awesome!
Great work
Great video. Thank you.
Thanks, Bro! ☕ You're awesome!
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!!
High quality tutorial Bro, keep the good work.
My man u r the best!!
Word. just beginning my Java journey. Thank you ✌
You are awesome bro!
how can you be so good at teaching
you are godsend, thanks!
Thank u so much sir, you av been a help to me all the time.
Thank you so much for these videos, I have an exam tomoz and you are saving my butt.
Best channel to learn coding!
You the best, Bro!
I’m feeling amaze here
perfect explanation
I also love cars, how many car lovers are watching this LAMBO, GT, DODGE???🎉
I have learned something thank you
Explained well....!!
Bro your videos are amazing! Keep up the good work and I hope you'll get the recognition you deserve soon enough.
Amazing
Ένα από τα βασικότερα μαθήματα αυτής της σειράς μαθημάτων στη Java και τον αντικειμενοστρεφή προγραμματισμό (O.O.P.) είναι τα αντικείμενα (objects).
You are amazing
Thank you! this helped me for school exam❤
though I'm not so good in understanding English, it's so easy to learn java with your videos💛
Very nice
Well explained
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();
}
}
your good at codes bro. hands up.
Awesome
This is awesome