Vipul Bhai, Jaadu kar rakha hai aapne. I started watching your videos like a binge-watcher . Thanks a lot.
@ajaykumar-lf8dh4 ай бұрын
Although i know all the concept taught in this video, but it took me many months and articles to learn these things, but you taught in one video , great lecture !! Please make the videos on design patterns or microservices
@ujjaldeb6286Ай бұрын
The society isnot ready for this awesome industry level tutorials
@nayankumar9113Ай бұрын
one of the best lectures on Interfaces for sure
@codingProfile449Ай бұрын
best video on interfaces I've seem on youtube. Thank you so much for giving us this content for free🤟
@dheerajkhandelwal65113 ай бұрын
I learned from different sources but still wasn't able to get a clear idea about the concept-why it is there and when to use it. However, watching your series helped me a lot. I watched the Dependency Injection video first, and after that, I really enjoyed studying from your channel. Your explanations are simple and complete.
@EngineeringDigest3 ай бұрын
Thank you so much for your kind words! I'm really glad to hear that my tutorials have helped clarify these concepts for you. It's feedback like yours that motivates me to keep creating content. If you have any other topics you'd like covered, feel free to let me know!
@fun_code_infoАй бұрын
Sir abhi tak ka sabse accha video thank you sir well proper concept step by step clear hua sir thank you sir
@luffad87142 ай бұрын
my 1 week of confusion just cleared by this 26min
@Mahesh-tm5oh14 күн бұрын
Great explanation.
@batman-oq8zgАй бұрын
thank you so much , now interface is much clear to me
@creativemind932328 күн бұрын
amazing playlist
@santoshkumar-vmАй бұрын
Great sir ji....❤
@NiteshKumar-yz1wr4 ай бұрын
i have never learned these concepts , although i am learning java for almost one year
@AyushSingh-hc3pjАй бұрын
very thankful
@ahmadfaraz92793 ай бұрын
"Auto wala poochega ki Class aur Interface mein ky fark hota hai"🤣🤣😭 I am crying...maybe reference to that Microsoft autowala guy driving autorickshaw to fight loneliness
@henilmamaniya92994 ай бұрын
Great lecture!
@giridhar09063 ай бұрын
Greate Job guruji🙏
@NiteshKumar-yz1wr4 ай бұрын
really geate content my dear guruji
@AbhishekSharma-wg2oc2 ай бұрын
Nice content 💯
@LubnaShaikh-ut1ii3 ай бұрын
Hello , can u teach the collection framework?
@ayushjain77584 ай бұрын
Agr koi auto bala puchega ,Abstarct class ka object banana chiye, to bo sahi h ya galat .???
@palokkumar74542 ай бұрын
maja aa gaye ji
@kuldeeppatil60804 ай бұрын
❤❤❤
@techiedev34583 ай бұрын
Just have a quick question I have two interface call InterfaceA and InterfaceB , and I have created method in both with same name example getUser(). and I have a class called UserClass which implements both interfaces InterfaceA and InterfaceB so in this case which which interface method will invoke from interfaceA or from InterfaceB or the JVM will take it randomly from the order in which we implemented both the interface?
@randomShit1804-w3c2 ай бұрын
When UserClass implements both interfaces, you need to provide a single implementation of getUser() in UserClass. JVM will not invoke a method from any interface directly, because interfaces don't contain method bodies (before Java 8, without default methods).