public class Main { public static void main(String[] args) { // method = a block of code that is executed whenever it is called upon int x = 3; int y = 4; int z = add(x,y); System.out.println(z); } static int add(int x, int y) { int z = x + y; return z; } }
@martiananomaly3 жыл бұрын
booba
@luchesegarlini2 жыл бұрын
thanks mate!
@mst73611 ай бұрын
public class Main{ // method = a block of code that is executed whenever it is called upon public static void main(String[] args) { String name = "Bro"; int age = 21; hello(name,age); } //void method static void hello(String name, int age) { System.out.println("Hello "+name); System.out.println("You are "+age+" old."); } } Here you have the void method example master Bro provided. Best Regards.
@stickydamper4 жыл бұрын
More people should know about this series. By far the best I have seen on you tube.
@FelipeDiaz-tt3zj3 жыл бұрын
I need help, how should I use this tutorial. Should I look at the video and then copy it into the java, or at the same time as the video to do it?
@stickydamper3 жыл бұрын
@@FelipeDiaz-tt3zj Every person has a different method. What I do is to watch and type the code side by side. I pause it in the middle, write code and may be play with it and see what else can be done with that. I never copy the code, that works for me. Generally when I am learning a new language, I already start with a project in my mind and then watch the tutorials for straight many hours, get the syntax and start working on the project. Then I keep coming back when I need to.
@cezarycezar281910 ай бұрын
+1
@jojovstojo2 жыл бұрын
More detailed code of the provided lesson: ********************************************* public class Main { // method = a block of code that is executed whenever it is called upon // Since we are calling the add(int, int) function inside the main() method which is a STATIC method, therefore, we also need to make the add() method STATIC. static int add(int x, int y) { int z = x + y; return z; } // In the above function definition, (int x, int y) are called parameters. // Since we are calling the hello(String, int) function inside the main() method which is a STATIC method, therefore, we also need to make the hello(String, int) method STATIC. static void hello(String name, int age) { System.out.println("Hello "+name); System.out.println("Your age is "+age); } // In the above function definition, (String name, int age) are called parameters. // Driver Code: public static void main(String[] args) { int x = 3; int y = 4; // Calling method add(int , int) int z = add(x,y); // In add(x,y), x & y are called arguments. // z = 7 System.out.println(z); // Calling method hello(String, int) hello("Pritam", 25); // Hello Pritam // Your age is 25. // In hello("Pritam", 25), "Pritam" & 25 are called an arguments. } } // Important Difference Between Argument and String. //************************************************* // The values that are declared within a function when the function is called are known as an argument. Whereas, the variables that are defined when the function is declared are known as a parameter.
@DrEggCake11 ай бұрын
thanks i needed this im watching this same video for the 6th time because i forget what method arguments and parameters every time
@yousefsammar1767 ай бұрын
I have an exam in 12 hours and these videos will save me Thx bro
@mohamadnazirissumalgy36994 жыл бұрын
Bro, you're the best. Your job is priceless!
@shyam.upadhyay3 жыл бұрын
"It doesn't matter what you do." -- Bro
@BroCodez3 жыл бұрын
deep
@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
@Acid15ful2 жыл бұрын
I can count on you to get me thru the boot camp I'm currently in. Appreciate you bro!
@raspberrybabe27 Жыл бұрын
these videos are saving my butt. I've been so lost in my coding class and you explain these concepts so simply but clearly. Thank you!
@TheMurdok778 ай бұрын
I watch your videos religiously, they're the best on KZbin.
@mummahadarsal37392 жыл бұрын
Sir You are a great teacher i swear the way u explains things are just mind blowing thank u for such type of playlist
@slade88632 жыл бұрын
Random comment to appreciate this wonderful video, God Bless you man
@timaya6 Жыл бұрын
You are so incredibly good at explaining. I wish you were my Tutor. I learned so much from your channel already. Im so grareful i found you. You are truly the best
@chaithdridi27184 жыл бұрын
You are doing an amazing job Bro 😍
@abhijaiallgamesgamer20756 ай бұрын
I AM YOUR SAVIOUR (i commented and saved you)
@honoredegg2 жыл бұрын
Methods understood completely, 2d ArrayList used as example. 22th. Thank you, ma Bro Sensei!
@oguzoguz46862 жыл бұрын
I loved the Z trick. They did not teach that in the bootcamp. It is very simple thanks
@gamerkiplaysss2 жыл бұрын
amazing personality, love your channel!
@fryingpanm69775 ай бұрын
i am saving this channel. so i am a hero
@ardcodelover2 жыл бұрын
Realy outstanding
@HamedAthari2 жыл бұрын
love your teaching
@Podcast_Walahm2 ай бұрын
"Bro" Why are yo so good in explaining ?
@g6z192 жыл бұрын
You're actually really helpful thank you :)
@medjl60834 жыл бұрын
The method in programming, allows you to reuse the code.
@nikitassouvatzis19282 жыл бұрын
Οι μέθοδοι σε κάθε γλώσσα αντικειμενοστρεφούς προγραμματισμού, είναι πολύτιμες!
@mehranabbasi8248 Жыл бұрын
Amazing, I don't know how to thank you for your wonderful method of teahing. This is what I wanted for my kid to learn Java, Easy and very Practical. Thank you very much!
@rishenxb1s7052 ай бұрын
I must say 3 years later and this video aged like fine wine
@dllm3tommy741 Жыл бұрын
Thanks for the video
@dianamilenaarchilacordoba46322 ай бұрын
great video!!! I'm infinitely grateful for your dedication and big heart to share this knowledge with the world. Thank you soo much
@saeedajax47643 жыл бұрын
Great teaching. thanks
@DevWithEv2 жыл бұрын
Super useful for beginners like me. Thanks Bro! Happy 2022
@fredericoamigo2 жыл бұрын
Good content a usual. Keep up the good work!
@kirillutsenko93062 жыл бұрын
thx a lot for your job
6 ай бұрын
Bro code! Great concept! Thanks for the lessons, bro. 😎
@theximera13 Жыл бұрын
pretty comprehensive explanation, thanks!
@sakalansnow6579 Жыл бұрын
great job
@ardcodelover2 жыл бұрын
Good sir
@ahmadfares3242 жыл бұрын
my fellow bro, you are awesome❤
@曾毓哲-b1t Жыл бұрын
Thank you very much
@percivalgebashe4376 Жыл бұрын
Nice
@dawidmateuszbudkiewicz49384 ай бұрын
This is like the 10th time brocode helped me and i'm just getting started!
@txfu-2 ай бұрын
ikr
@victortruong1524 Жыл бұрын
Holy shit ! Take my hand Master :(( !!! I have 5 videos about this topic, but you have lightened my understanding
@yousifshm2 жыл бұрын
thanks Allah that i know your seriuse, you are a true legend bro!
@Kd123346 ай бұрын
I was trying to understand this for 2 hours today from various sources, but it seems i just needed this video🎉
@bartomiejsniadach57952 жыл бұрын
Now it is so simple. Thank you
@SodiqjonNomonjonov-y9n Жыл бұрын
thank you for this course.
@anjapietralla576710 ай бұрын
I already learnd so much thank you
@technicalresi54519 ай бұрын
Very nice bro 😊❤
@rownakmallick24267 ай бұрын
great video!!
@mattoucas869 Жыл бұрын
nice
@brobroo61542 жыл бұрын
good
@marcosdidierdrogbachagaslo286 Жыл бұрын
identico ao conceito de "codar modularizado em python", that's cool!
@ligdjumvidja82948 ай бұрын
Brilliant video thanks a lot !
@zahidbond2 жыл бұрын
Bro you are breathtaking🙇♂
@12bradleyd3 жыл бұрын
Super helpful videos! Thanks for making these
@diegocatez71812 жыл бұрын
Cool!👍 Hope you already got static explain))
@Mey_xos2 жыл бұрын
Super
@enigmatimson45653 жыл бұрын
very cool 😎
@shriyarastogi1-jv1mf4 ай бұрын
Thanks bro! you're blessing for us...
@abdialemu8391 Жыл бұрын
Love it
@cesara97472 жыл бұрын
master of the universe!
@praveenbalajikalla-ng6mx8 ай бұрын
niceee bro
@ma89692 жыл бұрын
Thanks
@SkyV772 ай бұрын
thanks big bro
@ThomasTheThermonuclearBomb2 жыл бұрын
Thanks for explaining so well!
@huuloc87193 жыл бұрын
Nice.
@andycadcam22652 жыл бұрын
Incredible !
@soumelee56612 жыл бұрын
nice vid
@richardnunley76819 ай бұрын
This helped me so much thank you!
@yahiakhalil56584 жыл бұрын
Great ♥️
@jaylordjl63373 жыл бұрын
We’re hoping bro that you can upload a tutorial that java connects to DB :) thankyou
@viniciuslima106427 күн бұрын
Thanks, Bro
@baharalgun68912 жыл бұрын
Thank you
@moumenzineb66722 жыл бұрын
Thank you so much bro, amazing job
@robertalexandermendezfamil81032 жыл бұрын
thanks a lot, Bro Code you are a hero!
@nirnoychatterjee7908 Жыл бұрын
Please suggest projects in java to increase my hold in java
@yevgenomelchenko732 Жыл бұрын
Thanks Bro
@BakhtimurodPrimov Жыл бұрын
thanks
@amzie8412 Жыл бұрын
Thx bro you are our sun tzu 🙏
@Criticizeer2 жыл бұрын
op
@danny.30363 жыл бұрын
Thanks, Bro! ☕ You're awesome!
@ArnavVerma-c3kАй бұрын
I dont understand the use of return
@ibrahimylmaz83782 жыл бұрын
thanks bro
@cherry6280 Жыл бұрын
thankyou bro👌👌
@ktos21442 жыл бұрын
You are very nice teacher! I will listen you in your next films ^^ Maybe I don't know english so perfect but I can understand you. It's very nice :D
@samankucher51172 жыл бұрын
thanks bro . i watched the add to the end i hope it helps:)
@E_ter_nit_y2 жыл бұрын
thank you
@sairos40572 жыл бұрын
big bro
@KutakiarikashiАй бұрын
Thank you !
@mihriomar5158 Жыл бұрын
Thank you 😇
@JuliHoffman2 жыл бұрын
So helpful!
@BISAMARKSMANDOANG Жыл бұрын
Gg
@Sayar7jhcАй бұрын
I see that D&D, D&D Character Builder, and D&D Map Builder files.... It took me a few videos.... But I see it lol
@NicholasGJeriaАй бұрын
I still don't understand, you could have just done public static int add1(int x, int y) { System.out.println(x + y); return x + y; } and write less code? or is the meaning of the return keyword to actually store values in a new variable to use it for something else?