Difference between abstract class and interface


SUBMITTED BY: rahulranjanmca

DATE: Jan. 5, 2016, 6:09 p.m.

FORMAT: Text only

SIZE: 2.2 kB

HITS: 31052

  1. Abstract class and interface both are used to achieve abstraction where we can declare the abstract methods. Abstract class and interface both can't be instantiated.
  2. But there are many differences between abstract class and interface that are given below.
  3. Abstract class Interface
  4. 1) Abstract class can have abstract and non-abstract methods. Interface can have only abstract methods.
  5. 2) Abstract class doesn't support multiple inheritance. Interface supports multiple inheritance.
  6. 3) Abstract class can have final, non-final, static and non-static variables. Interface has only static and final variables.
  7. 4) Abstract class can have static methods, main method and constructor. Interface can't have static methods, main method or constructor.
  8. 5) Abstract class can provide the implementation of interface. Interface can't provide the implementation of abstract class.
  9. 6) The abstract keyword is used to declare abstract class. The interface keyword is used to declare interface.
  10. 7) Example:
  11. public abstract class Shape{
  12. public abstract void draw();
  13. } Example:
  14. public interface Drawable{
  15. void draw();
  16. }
  17. Simply, abstract class achieves partial abstraction (0 to 100%) whereas interface achieves fully abstraction (100%).
  18. Example of abstract class and interface in Java
  19. Let's see a simple example where we are using interface and abstract class both.
  20. //Creating interface that has 4 methods
  21. interface A{
  22. void a();//bydefault, public and abstract
  23. void b();
  24. void c();
  25. void d();
  26. }
  27. //Creating abstract class that provides the implementation of one method of A interface
  28. abstract class B implements A{
  29. public void c(){System.out.println("I am C");}
  30. }
  31. //Creating subclass of abstract class, now we need to provide the implementation of rest of the methods
  32. class M extends B{
  33. public void a(){System.out.println("I am a");}
  34. public void b(){System.out.println("I am b");}
  35. public void d(){System.out.println("I am d");}
  36. }
  37. //Creating a test class that calls the methods of A interface
  38. class Test5{
  39. public static void main(String args[]){
  40. A a=new M();
  41. a.a();
  42. a.b();
  43. a.c();
  44. a.d();
  45. }}

comments powered by Disqus