
What is the exact use of abstract class and interface? Which one is better abstract class or interface?
Thank you

Interface:
Java does not support Multiple Inheritance but the multiple inheritance can be achieved by using the interface.
Interfaces are useful when you do not want classes to inherit from unrelated classes just to get the required functionality.
It relate classes from different types of hierarchy.
Abstract Class:
Any class that extends the abstract class has to provide the implementation to the abstract methods. Hence these classes can be used as a skeleton to similar classes where some common functionality may be required. Such functionality can also be embedded into these classes.
Abstract class prevents from instantiating a class that is supposed to be extended first.
For more information, visit the following links:
http://www.roseindia.net/java/master-java/interface.shtml
http://www.roseindia.net/help/java/a/interface-vs-abstract-class.shtml
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.