P
Praveen
Hi..All,
This is a question regarding the reference assignment conversion :
Object objRef;
int[] intArray = new int[10];
Object objArray = new Object[3];
Why would this assignment would go through :
objRef = intArray;
and give compile time error on
objArray = intArray;
Regards,
p
This is a question regarding the reference assignment conversion :
Object objRef;
int[] intArray = new int[10];
Object objArray = new Object[3];
Why would this assignment would go through :
objRef = intArray;
and give compile time error on
objArray = intArray;
Regards,
p