This is the best UA-cam Channel for teaching how to Code on UA-cam ! Keep going and you will surely reach the 1 Million soon ! Thank you for the great way in explaining !
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
Awesome video. I'm new to programming and learning JAVA atm. Would surely enroll in one of your courses if you had them because all the subjects i struggle with in my textbook are always clear to me after one of your video's!
great stuff!! I've gone through a year and a half in college, we never had Java, but after I switched to another college (years later), they're having Java there and it's been a pain because of the virtual environment. maybe my plugin in the IDE can't handle saving the file multiple times to adjust something because it always tells me it couldn't delete one of the temp files, and in the terminal it works the way it did before the alterations I've done so it's like I'm running the older version of that file. then I restart the computer to make the temp files forcibly get removed whenever I can't build the project and it works, all of the alterations are applied.
Superman is your favorite hero right?? Yeah I find BAtman lame too ! Thats why you printed 'hero2' attributes when you also had 'hero1' ! 😉😄 NIce turorial bdw..... So far loving the simplicity of videos.
just put hero2, i use intellij and it says that it's a redundant string call and it's useless, toString means to convert the memory value/data into a readable string, which was already done in the other classes
Hello Bro Code , in your video I see a lot of samples in "package explorer". From were do you get these samples? I would like to get these samples too. any help would be very nice.
When the class is an extension of the parent class, if an object is instantiated within the child class does that mean the variables/objects that were extended are separate from the variables/objects of the original parent class? (Sorry if that was worded poorly as I'm still new to this)
Is it because we cannot make objects on superclasses in java, so the hero-class has to extend the "toString" methode of the person-class? would that be called overriding?
//********************************************
public class Main {
public static void main(String[] args) {
// super = keyword refers to the superclass (parent) of an object
// very similar to the "this" keyword
Hero hero1 = new Hero("Batman",42,"$$$");
Hero hero2 = new Hero("Superman",43,"everything");
System.out.println(hero2.toString());
}
}
//********************************************
public class Person {
String name;
int age;
Person(String name,int age){
this.name = name;
this.age = age;
}
public String toString() {
return this.name + "
" + this.age + "
";
}
}//********************************************
public class Hero extends Person{
String power;
Hero(String name,int age,String power){
super(name,age);
this.power = power;
}
public String toString() {
return super.toString()+this.power;
}
}//********************************************
Bro, you helped me so much that i canot say in words how thankful iam , God bless you.
@@Kingdd1os hm...
this was Super() easy to understand
:) Yeah!
toEasy()
More power to you man.
I watched a lot of tutorials but yours really exceeded everyone.
The way you explain is so easy to understand!
I'm surprised that this channel only has 2.53k subs, it's "super" underrated
thanks Furious! Hopefully that will change someday
@@BroCodez lol yea
VD 😂
@@BroCodez 227k now bro.
I year later 291k we'll done bro
I just love how you repeat previous topics by explaining the code in a certain order. Thx bro, greetings from Turkey
probably one of the most comprehensive java tutorials, without cutting corners :D
This is the best UA-cam Channel for teaching how to Code on UA-cam !
Keep going and you will surely reach the 1 Million soon !
Thank you for the great way in explaining !
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
well explaination
Awesome Stuff
One of the best youtube channel helps me a lot in learning coding.
superb vid. very powerful presentation
Amazing😀😀😀
Your video is short, but it's informative. That's all we need. Many thanks
you are single handedly getting my through my java course ty
Great Lecture
Awesome video. I'm new to programming and learning JAVA atm. Would surely enroll in one of your courses if you had them because all the subjects i struggle with in my textbook are always clear to me after one of your video's!
thank you
after 4 hour long lesson in school, you made it clearer in 3 videos of -10 min
thank you
The best channel to learn and get started with a new programming language . Thanks bro
it is very clear explanation
You show very good examples and explain it very well!
We got lots of tech channel of Indian Teachers, but your teaching method is on point Thanks for creating all this stuff Bro
this actually deserves more likes unfortunately people dont do this often :(
Really helpful content👍🏻
Best❤
really enjoying your tutorial
Hey Bro, I just shared your channel on r/learnprogramming, hopefully it'll help you in your heroic defiance of the almighty algorithm :)
Taylo you are AWESOME. I appreciate the share. I hate to admit it, but I could use all the help I can get. thanks again.
@@BroCodez No problem man, you definitely deserve more exposure
thanks for the video
Super duper
amazing
Awesome
Super
Excellent Video!!!
great
Amazing
Good
Besttttt
NIce.
Best java course I've found, by far
woww
super
these 10 min thought me more than the 2 hour lecture in university lol thx bro
Cool lesson. Thanks.
Because of you good sir! I was having fun with my programming exam
Becoming a hero
great stuff!! I've gone through a year and a half in college, we never had Java, but after I switched to another college (years later), they're having Java there and it's been a pain because of the virtual environment.
maybe my plugin in the IDE can't handle saving the file multiple times to adjust something because it always tells me it couldn't delete one of the temp files, and in the terminal it works the way it did before the alterations I've done so it's like I'm running the older version of that file.
then I restart the computer to make the temp files forcibly get removed whenever I can't build the project and it works, all of the alterations are applied.
Great! 👍
Thank you for this
you are really a java server i have understood more than i ever imagined
thankyou sir
Well explained, Thanks a lot
Finally i know what super is doing :D thanks
Yeah all it does is refer to an object's super class
great video!!! I'm infinitely grateful for your dedication and big heart to share this knowledge with the world. Thank you soo much
❤❤❤
naisuu
Your videos are getting me through university dude. Thank you so much for making these tutorials.
Thank you, finally I understand what is super keyword for!
HEYY BROS This guy is great Greetings from Bern
your geniuse
KING
Thank you very much
super cool videos bro. thanks . when will the playlist be updated bro? . It is difficult to search the videos bro
I'm currently updating the videos now, I have the new videos unlisted and will release them in a batch weekly
@@BroCodez thanks bro. hope this channel reaches good number of subscribers soon
elegant simple and awesome! thank you!
Commenting here for the reach
Thanks bro
You're the best
Superman is your favorite hero right?? Yeah I find BAtman lame too ! Thats why you printed 'hero2' attributes when you also had 'hero1' ! 😉😄 NIce turorial bdw..... So far loving the simplicity of videos.
Thanks
Thanks Bro
I never knew "super" keyword even existed
It's a thing
brooooo, thank you so much for this tutorial. only after seeing this did I understand how to properly use the keywords - super and this.
👍
yeeeehhhh finnaly i understood what it meansssss. bro you are the bestttt
Thank you bro
Thanks for the example, very clear.
😍
thanks
Hey Bro, what is more acceptable to use: System.out.println(hero2) or System.out.println(hero2.toString())? Since both prints the same output.
just put hero2, i use intellij and it says that it's a redundant string call and it's useless, toString means to convert the memory value/data into a readable string, which was already done in the other classes
Thank you Bro!!!!!!!!!!!!!!!!!!!
The prayers did worked, the algorithm brought me here. :)
Getting lessons from gigachad. Bruv this is bussin
Thank you Bro you’re always be our super()hero💪😆
4:28
Is the toString method in Hero considered an Overriding method? Since it's using the original method from its super class so I'm not sure.
♥️
THANK YOU
Hello Bro Code , in your video I see a lot of samples in "package explorer".
From were do you get these samples?
I would like to get these samples too.
any help would be very nice.
U should try unity game engine
I would like to, but I have my hands full right now lol
Thank you so much sir.
Thanks a lot
When the class is an extension of the parent class, if an object is instantiated within the child class does that mean the variables/objects that were extended are separate from the variables/objects of the original parent class? (Sorry if that was worded poorly as I'm still new to this)
Hey bro a simple question, why extend a class to use its functionality when we can simply make its object and do the same?
What would happen if I would only run: sout(hero2); AT 07:00 ? Why would it not just print out the 3 Values too? Why is the super-statement needed?
Is it because we cannot make objects on superclasses in java, so the hero-class has to extend the "toString" methode of the person-class? would that be called overriding?
Hello bro
I'm the 444.444 subscriber for your super channel, hope you say hi to your new bro🤣
hi
@@BroCodez 🤣🙈💖
explained it better than my prof
I have a question related to overriding of the toString method in Hero class, is it necessary?
Thanks, Bro! ☕ You're awesome!
1:48 I saw that coming
Super basically equals Parent. Good to know!
thaaaaaaaaaaaank you 💕💕💕.