0

Possible Duplicate:
Abstract class and Interface class?

Whats the need for abstract class and interface in Java

Community
  • 1
  • 1
madhav
  • 1

1 Answers1

0

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.

Bala R
  • 107,317
  • 23
  • 199
  • 210