Hello All,
I have an interface (say) 'Inter' with a method (say) 'void display()' in it. I have implemented that method in some class (say) 'InterImpl' in which I've implementation of display() to print something like "Hello";
Suppose I give call ti interface method, will it implicitly call 'display()' of class 'InterImpl'?
Please help.
Thanks. :)
