Gurudevobhava 🙏 Excellent explanation!! And specially Employee::getName 🙏 God bless you 🙏
@Javatechie Жыл бұрын
My pleasure buddy that i am able to explain in proper way
@leecha9512 Жыл бұрын
@@Javatechie you explain so good because you very good knowledge and skills to explain!!! God bless you 🙌
@health.upgradedbyscience.73092 жыл бұрын
So helpful, thanx a lot!! I was struggling on method reference for some days before i came across this excellent video - released just in time! 👍😁
@ramsp359 ай бұрын
Very Good. You explained a long theory just over 30 minutes in simple terms. Thanks for the video.
@kapilausarmal63002 жыл бұрын
Awesome Explanation with example....! 😊👌👍
@jijojoy46263 ай бұрын
best in youtube for metod ref
@gaddamsushama56732 жыл бұрын
Thanks a lot!!!! Concept was explained in very interesting and detailed way.
@BeOnlyOne1 Жыл бұрын
You are really Great and AWESOME….😊
@krishnamohan5771 Жыл бұрын
Excellent job 🎉
@Aniruddhdwivedi2 жыл бұрын
Hi Basant, eagerly waiting for the video series of Java 17 from you ... thanks in advance
@Javatechie2 жыл бұрын
Okay i will upload it
@surendrareddyseelam97572 жыл бұрын
we want it you got it, Godly content!!
@nguyenquan48362 жыл бұрын
You have skill teaching.
@abhishekgowlikar Жыл бұрын
Excellent boss, Kudos
@thanipattavan2 ай бұрын
Impressive
@suprajakannaiyan1301 Жыл бұрын
Your tutorials are just awesome...
@kishordige97212 жыл бұрын
Thanks for the simple explanation!
@SHAHIDKUMAR-kd7vu2 жыл бұрын
really its great video
@kunwarrajneeshsingh31322 жыл бұрын
Nice explanation 👍🏻😊
@ahmedabdelhakim-x2h8 ай бұрын
Great explanation
@konanpower64512 жыл бұрын
Hello from finland. Hei suomesta ja kiitos😍
@mahendrabisht9253 Жыл бұрын
Thanks a lot for helping here
@ramakrishna-lz3ep2 жыл бұрын
Super expiation
@b_205bhimashankaravhad419 күн бұрын
sir please do make videos on realTime multithreading implementation
@Javatechie19 күн бұрын
Please check latest video section i have uploaded few videos on realtime multithreading
@harshitanand82162 жыл бұрын
Your videos are great as always. ❤️
@JackSon-lj3on2 жыл бұрын
Good explanation..
@shubhamh8771 Жыл бұрын
Thankyou for Explanation.
@aayush54742 жыл бұрын
Nicely explained!
@abhilashpatel6852 Жыл бұрын
interview question @29:43
@Sundharamurali2 жыл бұрын
Hi Brother, Thanks for this series, Could you please make a video on Java 8 grouping by. Thanks in advance!!
@Javatechie2 жыл бұрын
Okay
@mohanrathod52912 жыл бұрын
It Awesome!. Can you make one video for MapStruct
@Javatechie2 жыл бұрын
Okay sure
@sm88179 ай бұрын
Sir can we get the code which u are using to explain ?
@LoveToLearnanilappana10 ай бұрын
out::println is instance method reference right correct me if im wrong
@sandeepjoshi4178 Жыл бұрын
Bhaiya mzza aagya, are println static nahi hei😂😂😂😂
@Javatechie Жыл бұрын
🤪 static to hai println
@hariprasad26972 жыл бұрын
Superb 🌻...also please do a video DTO's in springboot in my project we've using DTO's I am unable to get the use and purpose of implementing DTO's 😭 please do a small video if possible 🧡
@Javatechie2 жыл бұрын
Okay 👍
@sureshmanne7245 Жыл бұрын
In the last minute you are printing the ids from ArrayList but they are empty, why? What to do to show ids?
@ElonMusk-wo7zf Жыл бұрын
What if Instance method has arguments, can we use it with class reference?
@Javatechie Жыл бұрын
Yes we can like String::toUpperCase
@ElonMusk-wo7zf Жыл бұрын
@@Javatechie Please give an example for Method reference where the method takes multiple arguments.
@krishnamohan5771 Жыл бұрын
is foreach accepts consumer only right? but you are calling static method ref
@harshitsachdeva48362 жыл бұрын
What are VO and DTO classes
@Javatechie2 жыл бұрын
Value object and data transfer object. Both are the same who hold request attribute
@sujitkumar219611 ай бұрын
Awesome bro, but the source link you posted is not a correct one. can you please share the source code with us?
@Javatechie11 ай бұрын
Let me check and update
@mdsaquibansari4123 Жыл бұрын
Thanks
@jrdillip Жыл бұрын
Hello Sir how this is working Employee::getName , as we know we can't call a non static method using the above syntax. It's bit confusing. Can anyone help me to understand this concept
@Javatechie Жыл бұрын
Please check the video again. I have explained the same question over there
@jrdillip Жыл бұрын
@@Javatechie Ok Sir Thank you so much for providing the good content. Really because of your videos only I am able to start with Spring Boot.
@Javatechie Жыл бұрын
Good to hear this 😃. Keep learning
@AbhishekGupta-fi2wp2 жыл бұрын
Is kafka videos are coming for begineers?
@Javatechie2 жыл бұрын
Yes will start from very basic level
@AbhishekGupta-fi2wp2 жыл бұрын
@@Javatechie when can i expect please i really want to learn
@Javatechie2 жыл бұрын
@@AbhishekGupta-fi2wp next week onwards i will upload
@javatamilan9 ай бұрын
.min((Integer::compareTo)); but in this example compareto contains method parameter even though how can I access directly without creating object could you explain it
@Javatechie9 ай бұрын
Not getting your question? Where did we create an object?
@javatamilan9 ай бұрын
@@Javatechie Optional maximumNumber = numbers .stream() .filter(Objects::nonNull)// It filter non null elements .max((Integer::compareTo)); // returns maximum number and through exception if the element is null it filters non-null elements Optional minNumber = numbers .stream() .filter(Objects::nonNull)// It filter non null elements .min((Integer::compare)); Compare is a static method we can Directly access by using class name but compareTo method is a non static method but how can we accessed by using class name but it contains also the method parameter you said that we can't able to access that method by using class name by method reference if the method contains method parameter
@gowtham43832 жыл бұрын
Hi bro, Thank you for the video on method reference. Kindly help me to understand Reference to an instance method of an arbitrary object of a particular type with below example. Example: String [] array = {"Code","Java","C++"}; Arrays.sort ( array, String:: compareToIgnoreCase); In this example ,String Class compareToIgnoreCase method having arguments then How ClassName:: instance method working here. Kindly help with this
@PachaDreamer Жыл бұрын
@javatechie why didn't you answer this question please? I also found it pertinent.
@Javatechie Жыл бұрын
If it takes a single argument of the type which you are getting from the stream then it will work
@krishnamohan5771 Жыл бұрын
I think it is taking String as object literal
@preetisharma76022 жыл бұрын
Sir there is and arbitorary method refrence . I have seen many place . Please cover that. I realy do not underatand it
@Javatechie2 жыл бұрын
Okay but that is kind of predefined method for example String::toUpperCase
@bindu6790 Жыл бұрын
Little bit confusing
@Javatechie Жыл бұрын
What's your confusion
@naoryehuda68308 ай бұрын
Your native accent is very bad,
@srinin46006 ай бұрын
Nice tutorial. Please share reason for map(ArrayList::new) in the following line you showed at the very end: It just prints empty ArrayList as many times as the number of employees. Not sure the intent of printing empty list. Thanks ______ service.loadEmployeesFromDB().stream().map(Employee:getId).map(ArrayList::new).f orEach(System.out.println);