In both super class A and sub class B i have variable abc as 10 and 20 respectively, and a method callme(), overrided in sub class.
If i do
A a = new B();
B b = B(new A());
then if i write
a.callme() -> calls B's method
b.callme() -> calls A's method.
This is because method is called based upon the actual object.
If i do
str = a.abc; // will print 10 , based upon ref var type A
str = b.abc; // will print 20 , based upon ref var type B
Why is this difference? Why not both method and variables accesses based upon the actual object?
Thanks