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