Useful video ....great Sir and Thank you for making this type of videos which is help us to clear the doubts. Sir you are really great , your teaching and explanations skills are very excellent
referance varialbe kisi ka bhi ho, sub class ko call lgayenge to sub class ka method hi execute hoga na... ? Object sub class ka create kiya hai to sub class ka hi method execute hoga na... ?
Since you are creating object of child class. To method b iska hi call hoga na. Agar @override nahi b likhy to be child class ka hi call hoga.. can u call superclass method using overriding
@@ankitanjalijha @ANKIT JHA its clear bro!! He has used refrence variable of super class nd object of child class. Bt basically he has created an object of super class by using super class reference variable u can rewrite same program. Create object like "shape s=new shape() ; n check if behavior of program changes!!
Hello Sir , please explain why you did make reference r of super class and make object of sub class in main method. I did not understand it please explain this.
Sir, polymorphism and inheritance dono alag alag concept hai OPPS ke then overriding is a way to achieve polymorphism and to achieve polymorphism we are taking help from inheritance then why they are different topics
My exam starts 10:30 and I'm watching this at 9:30 because my friend says 'mai ne sab pur liya tu bas method Overloading and Method overriding dekh ke ja'😂😂
You actually used dynamic dispatch method apne super class ka reference banake subclass ke object ko call kiya But ulta yaha superclass ka object print hua Please i am little bit confused please explain
Your videos are easy to understand compared to other JAVA UA-camrs.
Tomorrow is my exam. I think I can complete my syllabus now by today. Thank you sir.
I too have xam tomorrow
Bhai kis company m hai
I have exams 2 days later😣
What happened bro in your exam
@@otismilburn1052 I also have exam I am coming to complete my whole syllabus bca 4th semester😅🤣
bahut bahut dhanyawad aapka itna ache se to teacher ne bi nai samjaya tha tution main
Sir you are really great , your teaching and explanations skills are very excellent .
But wanna put video in 2x speed and should watch .
Your teaching is so good and easy to understand.... thank you sir
so true
System.out.print("I don't know why but apke samjhane ke tarike se bhut ache se smajh aa jata hai
Thanks! ");
System.out.println hota he 🙂
@@LegendaryThakar print bhi shi hota
👍👍👍👍👍👍👍sir kya padhate ho aap Starting to ending pura chap gya dimag me 👍👍👍👍👍👍👍
Sir your videos .my all daubt clear in polymorphism tnx🙏🙏🙏
Useful video ....great Sir and Thank you for making this type of videos which is help us to clear the doubts. Sir you are really great , your teaching and explanations skills are very excellent
your teaching is great sir all the concept is clear
you're truly a master at teaching. polymorphism ek jhtke m smjh aa gya
Amazing explanation sir.. thankyou so much 🙏
superb teaching my concept cleared 😊
Thank you sir you are so great teacher in this world I love you sir I love you so much 🥰🥰🥰🥰
Amazing bro these videos are saviour before exams 🎉
Suprb sir..... I have cleared all my doubts with the help of ur video
Sir you are really great all concepts understood easily 👍👍
Bht vadiya chanel a kiya battan ne yar ❤❤❤❤❤❤❤
brother thanks a lot you cleared my doubt regarding this overloading and overriding lot's of love from Assam
Sir, You just explained this toPic so eaSily. ThaNK You Sir🙂
Sir aapki video bahut dhyaan se dekhi..aisa lag rha tha jaise swayam maa sharda padha rhi ho...thank you sir
This lecture is amazing!!!
Simply great explained 👏
You are the best for java
Sir please your notes are shared in description. so we can learn and understand more
Nice sir first I learn the work of any topic from your channel then next move to other channel. 🎉🎉❤❤❤❤
your videos are really helpful for interview preparation of java. your explanation is so easy to understand.
Thank you sir your explanation is very easy to understand
Useful video ....great Sir and Thank you for making this type of videos which is help us to clear the doubts.
Thank you sir for providing such content. Today is my exam😌
Very helpful video for me tomorrow I hava en interview
Tomorrow is my java mock... because of you i understood this topic thank you sir 🤗
Good luck 👍
JVM is java virtual machine & JRE is java runtime environment
thanks for explaination
1 hour baad exam h or abhi pdre h😂
Bhagwan kare achhe no se pass ho jao
Mera bhart mahan
Same Here 😮😂
Same bro 😂
💯🙂
Best explanation Tysm sir,🙏🏻
Dil se salute 🙏🙏🙏🙏
All concept clear 👍👍
Brother you are great 👍
10 baje exam hain Oops with java
Thank you so much..........😊
very very very gooooooooood
Easy to understand
Really you are very great teacher ,,, you have explained things sooooooooo easily to understand .
Thankyou 💜💜
Thank you so much dear
@@LearnCodingOfficial sir please provide us hand written notes sir please b
@@LearnCodingOfficial hi
Big Thank to u sir.....Happy Teacher's Day sir.......🙏
Thank you so much
Thanku aj mera exam apki wajah se acha hua i m very happy
Maine kuchh nhi kia aapne mehnt kia islie achha gya exam
@@LearnCodingOfficial apki wajah se hi hai kuki java ne bahut dukhi kia tha mera a level atka tha
@@LearnCodingOfficial apka padhane ka tarika bahut acha i love it
Sir ek series automation testing pe bhi bana dijiye it's humble request to you sir
Thanks for your efforts
referance varialbe kisi ka bhi ho, sub class ko call lgayenge to sub class ka method hi execute hoga na... ?
Object sub class ka create kiya hai to sub class ka hi method execute hoga na... ?
In last why you take draw2 same method name chahiye na
Since you are creating object of child class. To method b iska hi call hoga na. Agar @override nahi b likhy to be child class ka hi call hoga.. can u call superclass method using overriding
same doubt mujhe bhi hai
@@ankitanjalijha @ANKIT JHA its clear bro!! He has used refrence variable of super class nd object of child class. Bt basically he has created an object of super class by using super class reference variable u can rewrite same program. Create object like "shape s=new shape() ; n check if behavior of program changes!!
thankx a lot sir ,thanks
awsm video bhai
Today is my exam nd I almost completed important topics of oop
Thank You ❤
Exam se just 10 min pahle pade ke pass hone ka ghamand h
Thank you so much sir
it also will give square without override
Curly braces thoda acha bnaye kyuki opining closing same bna diya
Bro ur amazing
Thank you sir ❤️
Class shape
{
Void draw ()
{
System .out.println("can't say shape. Type");
}
}
class square extends shape
{
@override
Void draw()
{
Super.draw();
System.out.println(" square shape");
}
}
Class Demo
{
Public static void main (string[]args) {
Shape r = new square ();r.draw();
}
}
can i get your notes in pdf please , your notes is really nice and your teaching way .
so sir plz provide me notes .
Thanks sir.....❣️
Thank you
Sir can we create object of a child class?
superb sir🙏
sir make a video on contructor chaining and types please🙏🙏
Hello Sir , please explain why you did make reference r of super class and make object of sub class in main method. I did not understand it please explain this.
I dont why there is need to create upcasting to get value of class square, we can directly create object of class square to get it.
Sir, polymorphism and inheritance dono alag alag concept hai OPPS ke then overriding is a way to achieve polymorphism and to achieve polymorphism we are taking help from inheritance then why they are different topics
Because method overriding is a type of inheritance... Application of it. It's not inheritance.
as you say that we can say static to compile time type and dynamic to run time type , how?
and why?
Thank you sir
Thanks sir
Thanks!
please try to correct the grammatical errors in your notes, it's my suggestion
Sir kya program ma override likhna zaroori hota hai??
Great
Thank you so much
Good job
Tq for tomorrow 😂
In my book its different, reference variable aur object sub class ka hi banaya hai. Is it right?
real life example bhi samjha dia kro 😢
Superb sir❤❤
8:53 par sub class ka method name change kr diya or aapne super class k method ko call kiya hai to ye overriding ka example nahi raha???
On my way to exam
Hello sir advance Java par video bhi ye
Tomorrow is my interview.
Sir.... Which type of software used for program typing
Aadrsh ka dost
My exam starts 10:30 and I'm watching this at 9:30 because my friend says 'mai ne sab pur liya tu bas method Overloading and Method overriding dekh ke ja'😂😂
😊
your voice is sounds like meena in kota factory
Sir please dynamic binding pr video bnado
Ok
You actually used dynamic dispatch method apne super class ka reference banake subclass ke object ko call kiya
But ulta yaha superclass ka object print hua
Please i am little bit confused please explain
Because he used super keyword in the subclass. Only then it is possible to call SuperClass method.
great
Bro plz ek baar apna computer ka copy dikha do pls 🙏🙏🙏
sir please provide notes also for revision
please please
Agar ese mere clg wale padha te toh Acha hota
Bro please help help am one doubt. In c language use header files .in java u not use header file ,please explain 1🙏🙏🙏🙏🙏🙏
In java we are using packages
Bro which polymorphism method we use mostly
Run time 😊
Tmrw is exam 😂4th sem