• 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

How to typecast an object which is of unknown class type at runtime?

 
Ranch Hand
Posts: 62
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

When objects of different class types are added to ArrayList. At runtime while retrieving the elements from ArrayList, How can I make it dynamically assign the objects of different class types into respective reference variables.

For example,

ArrayList contains [animal ,dog,foo,"Hello",Vector a......]
Now I need to retrieve these elements and dynamically assign to a reference variable of respective types at runtime, like below.

Animal a = (Animal)ArrayList.get(0);
Dog d = (Dog)ArrayList.get(1);
.
.
.
.
? xx = (?)ArrayList.get(?)

How can I achieve it?
 
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
type cast to Object Class
 
Java Cowboy
Posts: 16084
88
Android Scala IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear "kumar",

I am one of the moderators of the JavaRanch forums. Here on JavaRanch, we have a naming policy. We want the users of JavaRanch to use a real-sounding name as their display name.

Unfortunately, your name "kumar" does not comply to the naming policy. Your display name should consist of a real-sounding first name, space, and a second name. Not only a first name, no obviously fake nickname, no initials only for the second name.

Please read the naming policy carefully and change your display name. You can change your name by editing your profile.

Please note that we are taking the naming policy seriously. You have been warned multiple times before. So, update your display name ASAP. If you ignore this request, your account will be locked.

Have fun on JavaRanch,
Jesper Young - Bartender
[ January 09, 2008: Message edited by: Jesper Young ]
 
Ranch Hand
Posts: 457
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The design is in question here.

If you are putting heterogeneous objects into a collection, you should treat them all like their most base types. Either they should all implement an interface (Animal), inherit from one class (Dog), or you should treat them all like Object. Otherwise, what's the point.

perhaps:

baring that, check out:

Object.getClass()

and make a giant if-then statement,

also the java.lang.reflect package will provide runtime information, but that sounds more complex than you're looking for,
 
Deepak Kumar
Ranch Hand
Posts: 62
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is there any way to avoid huge chain of If-then clause ?
 
Ranch Hand
Posts: 56
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How do you think you could avoid a huge switch? You need to perform a different action of each object. So, you have 2 choices: (a) inspect each object then figure out what action to take (i.e. the naive way); or, (b) let each object figure out what it should do. If you're not familiar with it, check out polymorphism; it's the ideal solution in this case.
[ January 11, 2008: Message edited by: Timothy Frey ]
 
Deepak Kumar
Ranch Hand
Posts: 62
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you very much for the good Idea.
 
Everyone is a villain in someone else's story. Especially this devious tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic