Below example runs without any errors, can any one explain me how this works?, as interface doesn't contain any toString()/hashcode/equals method declaration how compiler will resolve method call?,as per my understanding toString()/hashcode/equals or Object class methods will be declared by default inside interface? please correct me if am wrong
interface int1 { public void show(); }
class inttest implements int1
{
public void show()
{
System.out.println("inttest.show()");
}
@Override
public String toString()
{
return "tostring called";
}
}
public class MainClass1
{
public static void main(String[] args) {
int1 i=new inttest();
System.out.println(i.toString());
}
}
Any interface has all the public methods of the
Object
class (it either inherits them from a super-interface or declares them implicitly if it doesn't already declare them explicitly).This makes sense, since any implementing class of any interface must be a (direct or in-direct) sub-class of the
Object
class, and therefore will inherit an implementation of all theObject
methods.