No, it is not. First of all, you are not using an instance oto call methods. Without specifying an instance, the compiler will force these methods to implicitly call this.
-, o.f(), f Object. , , o A.
Object o = new A();
String s = o.toString();
((A)o).f();
.