Possible Duplicate:
Abstract class and Interface class?
Whats the need for abstract class and interface in Java
Possible Duplicate:
Abstract class and Interface class?
Whats the need for abstract class and interface in Java
Abstract class can have some implementation but interfaces are pure contract specifications with no implementation. Also a class can extend only one class(abstract or not) but can implement any number of interfaces.