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.
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
Interfaces can extend of each other but no a super class for interfaces.
Interfaces are not classes. Therefore, an interface cannot have a superclass, and your question is essentially invalid.