No Overriding can not be performed on properties/data members it always call the reference class properties value
Let take an example
Public class Father
{
public int age=60;
}
Public class Child extends Father
{
public int age=30;
}
Now if Father f = new Child();
f.age print 60;
Let take an example
Public class Father
{
public int age=60;
}
Public class Child extends Father
{
public int age=30;
}
Now if Father f = new Child();
f.age print 60;
Post a Comment