• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

an array question

 
Ranch Hand
Posts: 100
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
how does it works

object ia = new float[20];

here the object ia does not have []
which is need ???
 
Ranch Hand
Posts: 33
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hello lalit,

object ia = new float[20]; is same as

float f1 = new float[20];
object ia = f1;


an array of float is an object( ie: an instance)... therefore this reference can be assigned to the oblect ia....

correct me if i am wrong...
 
Ranch Hand
Posts: 83
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi mithun gm
you are right
but maybe you type incorrect
 
mithun gooty
Ranch Hand
Posts: 33
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
helo wang,

hey thank you for the correction...
 
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
As every array objects take the default value of the declared type, how will i traverse thru the following code

Object obj = new int[10];

now, the 10 objects should have the default value as 0. The question is, how do i traverse the array ??
 
Ranch Hand
Posts: 2023
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator


As every array objects take the default value of the declared type, how will i traverse thru the following code

Object obj = new int[10];

now, the 10 objects should have the default value as 0. The question is, how do i traverse the array ??



One way, you need cast back to array.
int[] x = (int[])obj;
 
reply
    Bookmark Topic Watch Topic
  • New Topic