public class Main { public static void main(String[] args) { // method chaining = a common syntax for invoking multiple method calls in OOP // condense code into less lines String name = " bro"; //name = name.concat(" code "); //name = name.toUpperCase(); //name = name.trim(); name = name.concat("code").toUpperCase().trim(); System.out.println(name); } }
@devishhiwarale49074 жыл бұрын
This channel is really underrated ,keep making those coding tutorials ,lots of love
@adeebalaifan86842 жыл бұрын
Amazing concept
@PiDeeLP2 ай бұрын
easy and clear explanation, thanks!
@BingoGo2Space Жыл бұрын
Love your course, bro. BIG BIG LOVE
@DSCS_GMLohith4 жыл бұрын
Loved it
@udaysaimanoj21172 жыл бұрын
Nice
@marxLz2 жыл бұрын
I'm currently here right now because I discovered that this is one of the topics not covered in the all-in-one version of the video. I think 19 topics are missing there. I'm about to finish that 12 hour version tutorial. And starting to grasp and understand some codes, but still need my notes as I try to setup my own coding.
@jayz01. Жыл бұрын
have you made notes for it all?
@LudObrzygowiony Жыл бұрын
great
@afifkhaja2 жыл бұрын
Thanks for this
@archerx91x604 жыл бұрын
Great video
@MrLoser-ks2xn2 жыл бұрын
Thanks
@SardorbekPahlavonov Жыл бұрын
Thank you
@desmiles15673 жыл бұрын
Nice one bro
@abdullahhussein68952 жыл бұрын
perfect java teacher🤩
@ibrahimylmaz83782 жыл бұрын
thanks bro
@evil714920 күн бұрын
Boosting algorithm, Bro needs also the to eat
@rashmikakelum8803 Жыл бұрын
thank you
@leviplays74669 ай бұрын
you're the bro
@kemann38153 жыл бұрын
Greatly appreciated
@abuhamza681711 ай бұрын
Thanks bro
@MrLoser-ks2xn Жыл бұрын
@m1troska3 жыл бұрын
Thank you for your great explanation. But by the chained version of the code, does it trim the string first, then touppercase, then concat or is it backwards?
@maksimmakarov95412 жыл бұрын
hey! thx for video :) one question: methods are executed from left to right?
@eugenezuev73497 ай бұрын
bowing deep
@gamingcool61904 жыл бұрын
Can you make a 2D random terrain generator
@BroCodez4 жыл бұрын
I'd love to, but it might be a little advanced for us at this level
@gamingcool61904 жыл бұрын
@@BroCodez can do it for me please
@creative-commons-videos3 жыл бұрын
hi, how to limit method chain to some perticular function ? returning this will give all method access, and i am trying to make a routing package where i need to return a chain of method like router.get() here i only want to return get, post and other method but i have many methods in class that all are showing up, i also have applyMiddleware() method that i only want after method is selected but it is showing while accessing router.* anything