When to use Abstract class and When to use Interface in Java

  Рет қаралды 202,678

Siva Reddy

Siva Reddy

Күн бұрын

Пікірлер: 277
@parkashram6482
@parkashram6482 4 жыл бұрын
Thanks for such great content, can you please explain how we can hide implementation with the help of abstract class and interface.
@sandipsawase7590
@sandipsawase7590 Жыл бұрын
Thanks for such great content, can you please explain how we can hide implementation with the help of abstract class and interface.
@sweetthirty2
@sweetthirty2 Жыл бұрын
Hi sir Why do we use an interface and not an abstract class? What if I implement the same method in an interface and abstract then? Any difference? recent interview question asked
@VijayKumarUppala
@VijayKumarUppala 5 жыл бұрын
There is no need to have atleast one abstract method in an abstract class. But if one of the methods are abstract then the class must be an abstract class. Please confuse the viewers with wrong definitions.
@kennethcarvalho3684
@kennethcarvalho3684 3 жыл бұрын
If you bring code and implementation logic the actual meaning is lost.. Firstly Abstraction and Interface one needs to look at the actual meaning of the words.
@ankitgiri6874
@ankitgiri6874 2 жыл бұрын
Video is nice, but dear sir at some points your tongue is sliping for wrong words. This is the best vdo about interface and abstraction, gone through many.
@harikagoud7652
@harikagoud7652 4 жыл бұрын
such a great explanation!! It was damn clear and i am highly impressed. Thanks a ton :-)
@SivaReddyJavaTechie
@SivaReddyJavaTechie 4 жыл бұрын
Thanks Harika. Please refer our KZbin channel to your friends and colleagues as it might be helpful for them. Happy learning.
@SmartProgramming
@SmartProgramming 5 жыл бұрын
nice one sir, keep it up 👍👍👍🙂🙂🙂🙂
@rajeshhublikar9593
@rajeshhublikar9593 3 жыл бұрын
you explanantion is good but you should be slow to explain it . felt it's somewhat faster.
@SivaReddyJavaTechie
@SivaReddyJavaTechie 3 жыл бұрын
Thanks Rajesh. Thanks for your suggestion. Please share our KZbin channel to your friends as it may be helpful for them. Happy Learning.
@sudeepduvvuru9625
@sudeepduvvuru9625 7 жыл бұрын
Good Explanation.. Keep doing this kind of Videos. Thanx
@NikhilSharma-eh3hn
@NikhilSharma-eh3hn 6 жыл бұрын
we can create the instance of abstract class and interface as well Try this ---------------------------------------------------------------------------------- Interface Example ------------------------------------------------------------------------------------------ interface Bank1{ void calInterest(); } public class InterfaceDemo { public static void main(String[] args) { // TODO Auto-generated method stub Bank1 b = new Bank1() { @Override public void calInterest() { // TODO Auto-generated method stub System.out.println("call interest"); } }; b.calInterest(); } } ---------------------------------------------------------------------------------- Abstract Class Example ------------------------------------------------------------------------------------ abstract class Bank{ public void withdrwal() { System.out.println("withdrawal"); } public abstract void calInterest(); } class HDFC extends Bank{ @Override public void calInterest() { System.out.println("HDFC Bank"); } } public class AbstractClassDemo { public static void main(String[] args) { // TODO Auto-generated method stub HDFC h = new HDFC(); h.withdrwal(); Bank b = new Bank() { @Override public void calInterest() { // TODO Auto-generated method stub System.out.println("bank instance"); } }; b.withdrwal(); b.calInterest(); } }
@sandeepverma337
@sandeepverma337 7 жыл бұрын
Nice one. But you haven't told as per the Title of the topic "When to use abstract and when to use interface"
@RajuAhmed111
@RajuAhmed111 6 жыл бұрын
When you don't know the implementation and perform common task to do for all use interface.
@prakashdolas4483
@prakashdolas4483 5 жыл бұрын
@@RajuAhmed111 same we can also achieve using abstract class by defining abstract methods only.except multiple inheritance support what is the other advantage of interface.
@Indian_working_mom
@Indian_working_mom 5 жыл бұрын
@@RajuAhmed111 bro please tell me same that abstraction and interface in hospital management system
@marconarca2706
@marconarca2706 4 жыл бұрын
it is code reuseability bro
@aneesfatimashaikh9708
@aneesfatimashaikh9708 7 жыл бұрын
watched so many videos on this ..finaly understud ur video..very nice explanation thankiu so much sir
@ssrkgw4601
@ssrkgw4601 7 жыл бұрын
Very Nice Explanation and Effort -- Appreciate in coming forward in developing this video
@yogeesh8637
@yogeesh8637 2 ай бұрын
This is wat I m expecting ..from last 4 year I was not getting it ..everyone is just explaining theory part..you are explaining with practical examples ❤ loved it bro
@devireddyfavreddy4785
@devireddyfavreddy4785 5 жыл бұрын
Very clear explanation, thanks bro
@SivaReddyJavaTechie
@SivaReddyJavaTechie 5 жыл бұрын
Thank you DeviReddy. Please refer our channel to your friends circle as it might helpful for them. Happy Learning.
@Anand-wi4yb
@Anand-wi4yb 5 жыл бұрын
I wish you were my Advanced Programming instructor!
@SivaReddyJavaTechie
@SivaReddyJavaTechie 5 жыл бұрын
Thanks Anand.
@hashinitamilkolam5959
@hashinitamilkolam5959 7 жыл бұрын
Hi Siva Reddy , Good explanation .... I have one doubt , at last in that AbstractClassDemo.java program had one error i couldn't find that error please explain me . because i'm not that much familiar in java . error : 20th line "Private int amount = 0;"
@sandeepmankena363
@sandeepmankena363 7 жыл бұрын
shasudha sudha where is that line?
@ravurisandeep8377
@ravurisandeep8377 4 жыл бұрын
Save the file after writing that statement..
@IndellableHatesHandles
@IndellableHatesHandles Жыл бұрын
I don't know where an abstract class would be useful, but interfaces are very useful.
@venkatsam2472
@venkatsam2472 3 жыл бұрын
Simply superb bro.. please do more videos.. 👌🏻🙏🏻👍
@SivaReddyJavaTechie
@SivaReddyJavaTechie 3 жыл бұрын
Thanks Venkat. Please share our KZbin channel to your friends circle as it may helpful for them. Happy Learning.
@venkatsam2472
@venkatsam2472 3 жыл бұрын
@@SivaReddyJavaTechie sure bro
@peelygotdrip
@peelygotdrip 3 жыл бұрын
very good n detailed explanation. Thank you
@SivaReddyJavaTechie
@SivaReddyJavaTechie 3 жыл бұрын
Thank you. Please share our youtube channel to your friends circle as it may be helpful for them. Happy Learning.
@CapTonSumanth
@CapTonSumanth 4 жыл бұрын
I got clear structure , thak you so much sir
@SivaReddyJavaTechie
@SivaReddyJavaTechie 4 жыл бұрын
Thanks Sumanth. Please refer our KZbin channel to your friends circle as it might be helpful for them. Happy Learning.
@vinaysaivarma4753
@vinaysaivarma4753 7 жыл бұрын
you said no need to implement concrete method in while inheriting abstract class then y do u override getadrress method ....then overided method is executed in the output ???aaa chepandi
@SivaReddyJavaTechie
@SivaReddyJavaTechie 7 жыл бұрын
Here is the scenario : If you don't want super class implementation getaddress method in sub class, you can override and get what ever the functionality you want in the subclass method getaddress method. this is based on the requirement, as long as you are happy with the concrete method implementation in super class can be used as it is then no need to override else you have to override it. Hope it is clear now.
@Tony.Nguyen137
@Tony.Nguyen137 3 жыл бұрын
Hi bro my english is not so good. Can you type here in the comment the answer to question 4? When to you use abstract class and Interface?
@learntolead6250
@learntolead6250 3 жыл бұрын
Hey guys after java 1. 7 . We can define a method by using" default" keyword. In interface
@shubhamshah3541
@shubhamshah3541 7 ай бұрын
abstract class conatin all the methods as concrete also, there is no rule like you need to mention atleast 1 abstract method as you mention @Siva Reddy
@VasuRana
@VasuRana 3 жыл бұрын
You messed up a little in the end but I really liked your explaination. Liked. Thank you.
@yuvaraji07
@yuvaraji07 3 жыл бұрын
Abstract class still contains all concrete method...It is not necessary that atleast one abstract must be there..it can have all concrete methods
@AdityaSingh-qn7rf
@AdityaSingh-qn7rf Жыл бұрын
still not clear when interface comes with default method in java 8 then what is the use of abstract class ?
@StateofQuantumEntanglement
@StateofQuantumEntanglement 7 жыл бұрын
great explanation..being mechanical engineering student, I was able to get the concept just by watching one time..thanks !!
@SivaReddyJavaTechie
@SivaReddyJavaTechie 7 жыл бұрын
Thanks Venkatesh :)
@apoorv_sri
@apoorv_sri 7 ай бұрын
can uou please also explain , whats the use case of abstract classes after java 8 new interfaces features
@harshadarahate3625
@harshadarahate3625 2 жыл бұрын
Thanks Siva sir for providing to the point explanation for difference between Interface and Abstract Class. It helped me a ton 🙏
@SivaReddyJavaTechie
@SivaReddyJavaTechie Жыл бұрын
You are most welcome
@yasothaimani2119
@yasothaimani2119 5 жыл бұрын
Thank you so much I have lot of questions in interface here afterwards I don't have any doubts thank you
@SivaReddyJavaTechie
@SivaReddyJavaTechie 5 жыл бұрын
Thanks Yosothai. Please refer our KZbin channel to your friends circle as it might be helpful for them. Happy Learning.
@ComedyInfoC
@ComedyInfoC 5 жыл бұрын
Good Explanation , small note: in java 8 interface can have a default implantation , so you don't have to implement in sub classes if you provide the default behavior in the interface
@SivaReddyJavaTechie
@SivaReddyJavaTechie 5 жыл бұрын
You are correct. I uploaded videos for Java 8 features.
@SivaReddyJavaTechie
@SivaReddyJavaTechie 5 жыл бұрын
Please refer our KZbin channel to your friends circle as it might be helpful for them. Happy Learning.
@ravurisandeep8377
@ravurisandeep8377 4 жыл бұрын
can I change the body of concrete method of abstract clss while overriding it in child clss..answer me pls?
@SivaReddyJavaTechie
@SivaReddyJavaTechie 4 жыл бұрын
Yes, you can.
@nimoa.rashid9186
@nimoa.rashid9186 6 жыл бұрын
You are a excellent teacher... Come to EuroAsia, Uzbekistan
@SivaReddyJavaTechie
@SivaReddyJavaTechie 6 жыл бұрын
Thanks for your appreciation Aneyssa. Happy Learning.
@keaweaquarian2631
@keaweaquarian2631 2 жыл бұрын
Thank you, that was a great explanation.
@mahtabbeplab2480
@mahtabbeplab2480 Жыл бұрын
Thanks sir for adding these Realtime examples which helped me understand the differences in a neat manner.
@SivaReddyJavaTechie
@SivaReddyJavaTechie Жыл бұрын
Glad it was helpful!
@hshimladka
@hshimladka 7 жыл бұрын
An abstract class is a class that is declared abstract-it may or may not include abstract methods. Abstract classes cannot be instantiated, but they can be subclassed.
@nimoa.rashid9186
@nimoa.rashid9186 6 жыл бұрын
Hrishikesh S thank you....may god bless you....bytheway I’m Muslim from EuroAsia...please don’t hate me🤪🤪🤪
@nagcvlogs
@nagcvlogs 6 жыл бұрын
Why would he hate ? he might be a Hindu and an Indian that doesn't mean he hates Muslim, We Indians may hate Pakistanis for creating issues in the countries ... Even we have a lot of Muslims in India and we treat them as our brothers and sisters ...HA HA I guess that's a lot of information Don't mind me ....I was Just saying...
@ALDMED3962
@ALDMED3962 5 жыл бұрын
As far as I know an abstract class must include at least one abstract method
@start1learn-n171
@start1learn-n171 Жыл бұрын
Tq
@rajenderdasari5304
@rajenderdasari5304 4 жыл бұрын
thanks for your clear cut information about the differences..
@SivaReddyJavaTechie
@SivaReddyJavaTechie 4 жыл бұрын
Thanks Rajender. Please refer our KZbin channel to your friends circle as it might be helpful for them. Happy Learning.
@Indian_working_mom
@Indian_working_mom 5 жыл бұрын
sir please explain same abstraction and interface in hospital management if knows any one please tell me
@shamshersingh1429
@shamshersingh1429 7 жыл бұрын
very nice explaination shiva....simply awesome....thanks
@tufanatha7798
@tufanatha7798 4 жыл бұрын
Very clear explanation, Thank you !
@SivaReddyJavaTechie
@SivaReddyJavaTechie 4 жыл бұрын
Thanks Tufan. Please refer our KZbin channel to your friends circle as it might be helpful for them. Happy Learning.
@tufanatha7798
@tufanatha7798 4 жыл бұрын
@@SivaReddyJavaTechie Hi Sir, I have one question, is this possible to control a class to access only required methods of an Interface A, A is having test1 and test2 methods, Class B implements A, now I want B can access only test2. Is it possible? (in java 1.7 or 1.8)
@t3073-b4i
@t3073-b4i 6 жыл бұрын
14:12 abstract vs interface rundown
@prateek1586
@prateek1586 7 жыл бұрын
Very Simple and Useful explanation Thank you.
@tmzpanda
@tmzpanda 4 жыл бұрын
0:29 abstract class 1:34 partial abstraction and code reusability 3:05 bank example 7:43 no instantiation 8:33 interface 12:55 abstraction 14:07 difference: abstract class extensibility vs interface multi-inheritance
@agarwalmohit43
@agarwalmohit43 7 жыл бұрын
Hi Siva, Thanks a lot. I was too confused about the abstract and interface, where to use what. This question was repeatedly asked by interviewer, and as result i was not able to answer appropriate logic behind each one. Regards, Mohit
@kgourav01
@kgourav01 6 жыл бұрын
Good explanation but only one correction. Abstraction class can contain all the non abstract methods as well. It is not required to have abstract class atleast one abstract method for being it an abstract class. The main motive of abstract class is that it can't be instantiated.
@naganagaruru8446
@naganagaruru8446 4 жыл бұрын
nice explanation
@SivaReddyJavaTechie
@SivaReddyJavaTechie 4 жыл бұрын
Thanks Naga. Please refer our KZbin channel to your friends circle as it might be helpful for them. Happy Learning.
@HameedRiswan
@HameedRiswan 5 жыл бұрын
In abstract class u used public abstract int...is string,float also it acceptable....what is the use of int!
@pcpardon
@pcpardon 5 жыл бұрын
Thank you. Answers for long waited questions I had
@SivaReddyJavaTechie
@SivaReddyJavaTechie 5 жыл бұрын
Thanks Kasun. Please refer our KZbin channel to your friends circle as it might be helpful for them. Happy Learning.
@jibinjames5128
@jibinjames5128 2 жыл бұрын
GREAT ONE , CRISP AND CLEAR
@mytubeamit1593
@mytubeamit1593 4 жыл бұрын
Hi
@SivaReddyJavaTechie
@SivaReddyJavaTechie 4 жыл бұрын
Hi
@sneharane2596
@sneharane2596 4 жыл бұрын
Thank you sir, you really explained it really well and made my doubts clear!
@SivaReddyJavaTechie
@SivaReddyJavaTechie 4 жыл бұрын
Thank you Sneha. Please refer our KZbin channel to your friends circle as it might be helpful for them. Happy Learning.
@indraverma2811
@indraverma2811 3 жыл бұрын
Very Nice!!!
@SivaReddyJavaTechie
@SivaReddyJavaTechie 3 жыл бұрын
Thanks Indra. Please share our KZbin channel to your friends circle as it may be helpful for them. Happy learning.
@earthcitizen7156
@earthcitizen7156 5 жыл бұрын
Hi siva sir 1)Plz explain the difference b/w abstract class vs interface of java 8 2)Difference b/w inteface of java 7 or below versions of java and intefaceas of java 8 interface?
@suryasingh4817
@suryasingh4817 5 жыл бұрын
I thought you will give us insight when to use what? It's certainly not the case that if my all method is abstract, I should be switching to interface. Interface and abstract class have much more difference and power in term of when to use and how. If all methods need implementation, I can create abstract class with all abstract method. Then why Interface is required at all.
@grandhegopichand4374
@grandhegopichand4374 5 жыл бұрын
If you do like this, you have only one e sub class .. If you go for interface you can implement multiple sub class , and java don't support multiple inheritance...so we are going to. Interfaces
@yoapps137
@yoapps137 5 жыл бұрын
It would also be nice to give us examples in day to day coding life... eg. like... OnClickListeners are an Interface. What about an example like that with Abstract class.
@charlenemaeforio1545
@charlenemaeforio1545 4 жыл бұрын
When should we use Interface feature?
@sharefun5799
@sharefun5799 6 жыл бұрын
I've seen people using both of them together but din't get this why .i.e subclass inherit abstract class and implements an interface as well . If we can create mandatory methods in abstract class already then why using interface for creating mandatory methods for subclasses? Like we created calculateInterest in abstract class so that it should be mandatory for all subclasses then why we used interface to create other methods , They can be created as abstract methods in abstract classes ? So what is the actual purpose of using them together ?
@SivaReddyJavaTechie
@SivaReddyJavaTechie 6 жыл бұрын
Use Interface - When all the subclasses want to implement their own implementation for all the methods defined in Interface. Use Abstract class - When there is common methods that can be extends to as it is. This will help code reusable and if any sub class want its own implementation then , sub class can override those methods
@avatargirase
@avatargirase 7 жыл бұрын
By looking at the method in your classes the class name and the subclass name should be like Account, SavingAccount,CheckingAccount......
@harshupreti1526
@harshupreti1526 5 жыл бұрын
you are god sir !!
@SivaReddyJavaTechie
@SivaReddyJavaTechie 5 жыл бұрын
Thanks for the note of appreciation, please refer our KZbin channel to your friends circle as it might be helpful. Happy Learning.
@korlamskrishna
@korlamskrishna 7 жыл бұрын
Nice info.. one thing we are missing here... if we create object for child class say for ex hdfc and calling methods we are loosing polymarphsim here
@SivaReddyJavaTechie
@SivaReddyJavaTechie 7 жыл бұрын
Siva - This is called as runtime polymarphism where you have same method signature in both super class and sub class but at runtime sub class method overrides the super class method.
@muralinaidu1059
@muralinaidu1059 7 жыл бұрын
Like it.
@TeluguInshots12345
@TeluguInshots12345 7 жыл бұрын
tanq sir,nice explanation
@mohaniavlogs
@mohaniavlogs 5 жыл бұрын
Please tell, What is the difference between 100% abstract class and interface?
@gowthamisasanapuri9980
@gowthamisasanapuri9980 3 жыл бұрын
Very clear explanation... Thank you very much sir 😊.....
@rajkumarp7784
@rajkumarp7784 7 жыл бұрын
u explained both concepts with sane example.but i didnt understand when to choose interface and when to choose abstract. can u pls give some real time scenarios
@SivaReddyJavaTechie
@SivaReddyJavaTechie 7 жыл бұрын
Interface provides 100% abstraction in Java. Interface is used to provide as a contract for the implementations. In a system it is possible to have the multiple class having the same method name but implementation might be changed from one sub class to another sub class when you providing the functionality for the methods. Hence using the interface, you provide as a contract for the business. E.g: in the case of JDBC, java provides Statement as interface and it have below methods. 1) public ResultSet executeQuery(String sql) 2) public int executeUpdate(String sql) 3) public boolean execute(String sql) 4) public int[] executeBatch() For Java, it does not matter for which database it has to execute the queries as long as database vendor provides the functionality for the above methods. Also each database(oracle, DB2, mysql) can have their own implementation for executing the queries. Abstract class : Go for abstract class when all sub classes methods having the same functionality of the super class method then it is better you can provides those common methods in the abstract class and which you feel implementation is differ in sub classes declare them as abstract methods so that sub classes can only provide implementation for the abstract methods and other methods can be used as code resuable
@Abadi881
@Abadi881 7 жыл бұрын
Using Interfaces require lots of overriding which means writing lots of lines of code, I don't like it :(
@SivaReddyJavaTechie
@SivaReddyJavaTechie 7 жыл бұрын
Interface provides the 100% abstraction in java. It used to defined the contract for the implementation classes. Example is JDBC. In JDBC, Java provides contracts to access the database. Now it is responsibility of database vendor to provide their own implementation to access their database. Oracle implementation is different from Mysql implementation to connect\execute queries in database. Still Java can interact with all databases due to because of the contract(interfaces) defined in the JDBC.
@jameslemieux8973
@jameslemieux8973 5 жыл бұрын
very helpful thank you!
@SivaReddyJavaTechie
@SivaReddyJavaTechie 5 жыл бұрын
Thanks James.
@ahmadhajoj1125
@ahmadhajoj1125 6 жыл бұрын
Fix ur english and accent so we could understand better ur voice not clearly
@protonvashishtha
@protonvashishtha 7 жыл бұрын
Beautifully explained! Most people know what is abstraction and interfaces but don't know where to use which.
@SivaReddyJavaTechie
@SivaReddyJavaTechie 7 жыл бұрын
Thanks Shwetank.
@JointFamily93
@JointFamily93 6 жыл бұрын
why we need to have interface to only declare methods , we can simply specify the needed method in e ach class right, why we need to define it somewhere as interface
@rajeshj8834
@rajeshj8834 6 жыл бұрын
1. It Gives a Structure to the entire coding . 2. It helps to maintain coding standard and that too compiler enforced 3.Very hypothetically - It is like an index of the book by seeing the interface you can come to know what is available easily.
@jagadishs1086
@jagadishs1086 4 жыл бұрын
Awesome explanation...sir you cleared all the doubts in interface and abstract in java.... thanks a lot sir
@SivaReddyJavaTechie
@SivaReddyJavaTechie 4 жыл бұрын
Thanks. Please refer our KZbin channel to your friends circle as it might be helpful for them. Happy learning.
@subramanianchenniappan4059
@subramanianchenniappan4059 5 жыл бұрын
Thank you. I am an experienced java developer. This would be helpful for interviews
@SivaReddyJavaTechie
@SivaReddyJavaTechie 5 жыл бұрын
Thanks Subramanian. Please refer our KZbin channel to your friends circle as it might be helpful for them. Happy Learning.
@subramanianchenniappan4059
@subramanianchenniappan4059 5 жыл бұрын
@@SivaReddyJavaTechie sure
@bhargavi3884
@bhargavi3884 5 жыл бұрын
If I want provide implementation for only one method from interface to class. How I can done this
@SivaReddyJavaTechie
@SivaReddyJavaTechie 5 жыл бұрын
You can do it through functional interface in Java. Please refer video kzbin.info/www/bejne/kIPSnZmVf7GAaJo
@naveenp8438
@naveenp8438 6 жыл бұрын
Nice Reddy. An abstract class is partially implementation. An abstract class may or may not abstract method.
@SivaReddyJavaTechie
@SivaReddyJavaTechie 6 жыл бұрын
Thanks Naveen.
@sandeshrana7225
@sandeshrana7225 5 жыл бұрын
Best explanation in KZbin
@SivaReddyJavaTechie
@SivaReddyJavaTechie 5 жыл бұрын
Thanks Sandesh. Please refer our channel to your friends circle as it might be helpful for them. Happy Learning.
@pratikkumary2joo7
@pratikkumary2joo7 6 жыл бұрын
I got more confused now between abstract class and interface
@dhanyamrajan478
@dhanyamrajan478 6 жыл бұрын
Great and simple explanation sir. Thank you. Only after watching this video i could understand both the concepts clearly.
@SivaReddyJavaTechie
@SivaReddyJavaTechie 6 жыл бұрын
Thanks Dhanya. Please do suggest our channel to your friend circle as it might help them as well. Happy Learning.
@rahulchandrabhan
@rahulchandrabhan 5 жыл бұрын
Very easily explained. Good Job
@SivaReddyJavaTechie
@SivaReddyJavaTechie 5 жыл бұрын
Thanks Rahul. Please refer our KZbin channel to your friends circle as it might be helpful for them. Happy Learning.
@rahulchandrabhan
@rahulchandrabhan 5 жыл бұрын
@@SivaReddyJavaTechie will do brother... 😄
@gopireddysoundarya7617
@gopireddysoundarya7617 4 жыл бұрын
Clear explanation thankyou..
@SivaReddyJavaTechie
@SivaReddyJavaTechie 4 жыл бұрын
Thanks Soundarya. Please refer our KZbin channel to your friends circle as it might be helpful for them. Happy Learning.
@pallavianilkar972
@pallavianilkar972 Жыл бұрын
Nice explanation
@YADA70073
@YADA70073 5 жыл бұрын
Great Video and great explanation. But I have a question, Can abstract class inherits from other class?
@SivaReddyJavaTechie
@SivaReddyJavaTechie 5 жыл бұрын
Yes, and you cannot instantiate it either, of course. If you extend a class with an abstract class and not define or provide the implementation for the base class abstract methods then the child class extending it would automatically become abstract.
@SivaReddyJavaTechie
@SivaReddyJavaTechie 5 жыл бұрын
Please refer our channel to your friends circle as it might be helpful for them. Happy Learning.
@sumitpaul3080
@sumitpaul3080 5 жыл бұрын
Respect and Lots of thanks for this kind of quality explanation with the code.. May God bless you.
@SivaReddyJavaTechie
@SivaReddyJavaTechie 5 жыл бұрын
Thanks Submit. Please refer our KZbin channel to your friends circle as it might be helpful for them. Happy Learning.
@SonuSharma-kz9kg
@SonuSharma-kz9kg 7 жыл бұрын
what is purpose constructor in abstract class but can't create object in abstract class
@SivaReddyJavaTechie
@SivaReddyJavaTechie 7 жыл бұрын
When you create constructor in abstract class, it is the responsibility of sub class which extends the abstract class has to create object for abstract class. So when you create constructor in abstract class, sub class has to pass the parameters to abstract class constructor. If you want initialise some properties from sub class to abstract class, you can use constructor in abstract class.
@mdalimiyan
@mdalimiyan 6 жыл бұрын
Good one Sir. Very useful. I can it is Amazing.
@SivaReddyJavaTechie
@SivaReddyJavaTechie 5 жыл бұрын
Thanks Srkfan. Please refer our KZbin channel to your friends circle as it might be helpful for them. Happy Learning.
@kesavulup6829
@kesavulup6829 7 жыл бұрын
interface contains any variable,if contains any variable what type of variable it is.
@SivaReddyJavaTechie
@SivaReddyJavaTechie 7 жыл бұрын
Yes, it is possible that interface contains variables. All the variables defined inside the interface are by default " public static final variables(constants)"
@sruthidevi8443
@sruthidevi8443 5 жыл бұрын
nice explanation sir tanq
@SivaReddyJavaTechie
@SivaReddyJavaTechie 5 жыл бұрын
Thanks Sruthi for the message. Please refer our channel to your friends circle as it might be helpful for them. Happy Learning.
@himanshuupadhyay6749
@himanshuupadhyay6749 6 жыл бұрын
abstract class can have not abstract methods, that makes it good to use.
@SivaReddyJavaTechie
@SivaReddyJavaTechie 6 жыл бұрын
Abstract class may or may not have abstract methods. If you don't want to create object for your class , then create that class as object and the sub class which extends abstract class is responsible for creating the object for abstract class
@kolluru17
@kolluru17 6 жыл бұрын
Your explanation is very good and very clear.. thanks a lot
@SivaReddyJavaTechie
@SivaReddyJavaTechie 6 жыл бұрын
Thanks Ravi. Please do suggest our channel to your friend circle as it might help them as well. Happy Learning.
@maneaniket4200
@maneaniket4200 5 жыл бұрын
Crystal Clear Explanation
@SivaReddyJavaTechie
@SivaReddyJavaTechie 5 жыл бұрын
Thanks Aniket. Please refer our KZbin channel to your friends circle as it might be helpful for them. Happy Learning.
@ahmadali6624
@ahmadali6624 3 жыл бұрын
thanks sir for the details
@SivaReddyJavaTechie
@SivaReddyJavaTechie 3 жыл бұрын
Thanks Ahmad. Please share our KZbin Channel to your friends and colleagues as it may be helpful for them. Happy Learning.
@krushnasahu28
@krushnasahu28 6 жыл бұрын
Thanks for this video easy to understood can u upload all oops concept
@SivaReddyJavaTechie
@SivaReddyJavaTechie 6 жыл бұрын
Thanks Krushna Sahu. Please go through videos uploaded here. @kzbin.info/www/bejne/nae7faOwdtKgnJo
@madhujitbhattacharjee1087
@madhujitbhattacharjee1087 6 жыл бұрын
Nice and simple explanation. Thanks Mr. Reddy!
@Anand-wi4yb
@Anand-wi4yb 5 жыл бұрын
Are you Navin Reddy's brother?
@srikanthreddy6991
@srikanthreddy6991 5 жыл бұрын
Finally clear explanation thanks
@SivaReddyJavaTechie
@SivaReddyJavaTechie 5 жыл бұрын
Thanks Srikanth Reddy. Please refer our KZbin channel to your friends circle as it might be helpful for them. Happy Learning.
@srikanthreddy6991
@srikanthreddy6991 5 жыл бұрын
@@SivaReddyJavaTechie definitely
@saurabhdhabe603
@saurabhdhabe603 6 жыл бұрын
Thanks a lot! Great explanation with an example and the simple words. Easy to understand.
@SivaReddyJavaTechie
@SivaReddyJavaTechie 6 жыл бұрын
+Saurabh Dhabe - Thanks Saurabh.
@shivramshrestha3877
@shivramshrestha3877 7 жыл бұрын
Nice video sir, I really understood about the abstract and interface
@SivaReddyJavaTechie
@SivaReddyJavaTechie 7 жыл бұрын
Thanks ShivRam.
Difference between Interface and Absract Class
30:52
Naveen AutomationLabs
Рет қаралды 181 М.
How To Get Married:   #short
00:22
Jin and Hattie
Рет қаралды 24 МЛН
From Small To Giant Pop Corn #katebrush #funny #shorts
00:17
Kate Brush
Рет қаралды 71 МЛН
How Strong is Tin Foil? 💪
00:26
Preston
Рет қаралды 137 МЛН
Abstract Classes and Methods in Java Explained in 7 Minutes
7:00
Coding with John
Рет қаралды 520 М.
Java Interview Q&A on Multi-Threading
34:16
Siva Reddy
Рет қаралды 82 М.
Abstraction In Java (OOP Concept) - Interface v/s Abstract Class
47:22
Naveen AutomationLabs
Рет қаралды 60 М.
Difference between Interface and Absract Class
16:57
DURGA EDUCATION
Рет қаралды 966 М.
How HashMap Works Internally?
20:58
Siva Reddy
Рет қаралды 72 М.
Abstract Class In Java Tutorial #79
8:55
Alex Lee
Рет қаралды 542 М.
Java Interview Questions and Answers on HashMap
16:47
Siva Reddy
Рет қаралды 21 М.
MUST KNOW junior role JAVA interview questions
42:15
Keep On Coding
Рет қаралды 119 М.