| Author |
Query:Data Type Conversions :Array to Object
|
Lucky J Verma
Ranch Hand
Joined: Apr 11, 2007
Posts: 277
|
|
Hi, In java , We can convert(automatically convertd) array reference to object of Object class ie Object o; int arr[]={1,2,3}; o=arr; //this line is legal Now ,o points to same memory location ,to which arr was referencing. Can we access to the data (list to value or array data) through Object o. thnx
|
 |
Keith Lynn
Ranch Hand
Joined: Feb 07, 2005
Posts: 2341
|
|
No, o can only access the methods of Object. You will have to cast o to an array reference before you can access the elements with the array access operator.
|
 |
Chandra Bhatt
Ranch Hand
Joined: Feb 28, 2007
Posts: 1707
|
|
Lucky, Although you can do the following: cmbhatt
|
cmbhatt
|
 |
 |
|
|
subject: Query:Data Type Conversions :Array to Object
|
|
|