
What is interface? When time is most suitable for using interface? Why we use interface instead of abstract? What is the differences between abstract and interface?

An interface defines a set of methods but does not implement them. A class that implements the interface agrees to implement all of the methods defined in the interface
Difference Between Interface and Abstract Class
1)Main difference is methods of a Java interface are implicitly abstract and cannot have implementations. A Java abstract class can have instance methods that implements a default behavior.
2)Variables declared in a Java interface is by default final. An abstract class may contain non-final variables.
3)Members of a Java interface are public by default. A Java abstract class can have the usual flavors of class members like private, protected, etc..
4)Java interface should be implemented using keyword 'implements'; A Java abstract class should be extended using keyword 'extends'.
5)An interface can extend another Java interface only, an abstract class can extend another Java class and implement multiple Java interfaces.
6)A Java class can implement multiple interfaces but it can extend only one abstract class.
7)Interface is absolutely abstract and cannot be instantiated; A Java abstract class also cannot be instantiated, but can be invoked if a main() exists.
8)In comparison with java abstract classes, java interfaces are slow as it requires extra indirection.
For more information, visit the following link:
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.