-4

In java, I know that super class of all "classes" is "Object" class. My doubt is,what is the super class for all the "interfaces" in java.

reddy
  • 667
  • 2
  • 9
  • 19
  • Consulting the Javadoc, or 'javap java.io.Serializable', would have told you the answer in ten seconds. -1 for zero prior research. – user207421 Mar 17 '14 at 10:19

2 Answers2

3

Interfaces are not classes. Therefore, an interface cannot have a superclass, and your question is essentially invalid.

Community
  • 1
  • 1
Jonathon Reinhart
  • 132,704
  • 33
  • 254
  • 328
1

Interfaces can extend of each other but no a super class for interfaces.

senior
  • 2,196
  • 6
  • 36
  • 54