Do interfaces inherit from Object class in Java?
If no then how we are able to call the method of object class on interface instance
public class Test {
public static void main(String[] args) {
Employee e = null;
e.equals(null);
}
}
interface Employee {
}
Serializableis an interface, the simplest possible; runningjavapon it tells you what it inherits from; and that is dictated by the Java Language Specification. If you think the JVM Spec comes into it somewhere please enlighten us. – EJP Jun 21 '12 at 8:49