Pl expalin How does this solve that diamond problem ND real world example...like bank interface which gets implemented by sbi meaning.. rbi ll share the interface details to those bank or how it works Pl explain
@Sidhu_likes18 күн бұрын
Please explain interface how to accept the multiple inheritance?
@collinseinstein65766 күн бұрын
nice explanation bro .👍
@ErrorMakesClever5 күн бұрын
Thank you 🙂
@magesh_00073 ай бұрын
Bro pakka va purinchuthu tomorrow exam oops .wonderful teaching thanks for the wonderful video anna 🫂✨
@ErrorMakesClever3 ай бұрын
All the best and Thanks, man!!
@Ragavi-hv1le2 ай бұрын
Super ❤
@ErrorMakesClever2 ай бұрын
Thanks 🔥
@CSESheikMohaideen3 ай бұрын
Bro what are you doing bro why delay for more days
@Buvanesh.V2 ай бұрын
interface player{ void play(); } class guitor implements player{ public void play(){ System.out.println("anirudh"); } } class panio implements player{ public void play(){ System.out.println("AR rahaman"); } } public class main{ public static void main(String[] args){ guitor g=new guitor(); panio p=new panio(); g.play(); p.play(); } }
@divya_bhagya_anandanАй бұрын
what is the difference between abstract class and interface
@RamyaK-j6t3 ай бұрын
Thank you bro 🥳
@ErrorMakesClever3 ай бұрын
Welcome 👍
@kiruthikar76983 ай бұрын
When we use interface?
@Yashica.M10 күн бұрын
Bro what is encapsulation 😅
@fazunasri18926 күн бұрын
Binding a data and function together is known as encapsulation
@sathishkraja21302 ай бұрын
Anna collections in java video poduga please
@sbarani7103 ай бұрын
Sorry you missed to tell this one, Interface ah class ku implements pannum pothu Interface la iruka methods ah must be in Public, Public illa ma empty ah same method ah define pannalum error varum, So Implements panna Same methods must be in Public, Neega itha pannirukinga but sollala bro, I'm also your Student👍
@aarifmohamed25213 ай бұрын
Thanks bro ,neenga epadi java learn panninga
@sathishkraja21302 ай бұрын
Bro nega avanga institution la padikirigala anga spring boot and microservices class iruka bro
@nareshrooney12 ай бұрын
Yes access should not be reduced , when u do not mention access modifier next to method , by default access modifier in Interface is Public but in class it is default . so access is reduced that is why error . so we should use public access modifier in Implementation Class