• 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
  • Devaka Cooray
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Jeanne Boyarsky
  • Tim Cooke
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
Bartenders:

get objects of the certain type from Collection

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

Below you can see a simple hierarchy of Bike's family.


So, I have a Collection<Bike> and I would like to get all bikes of the certain type. What I've done is :


so I compare classes ( I dont want to use instanceof because I'm interested in a concrete class ( not superclass ).

Another way to do it is to create a BikeType class which stores and defines all used type of bikes, and then a super class Bike will have an additional field
BikeType bikeType;

and then I could compare bikes in collection using that property .
I dont know if the 2nd option is better, because when you add new class you will have to change bikeType.

What's your opinion ?
 
Kuba Zygmunt
Ranch Hand
Posts: 37
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
there is an error in the code

should be:


if (bike.getClass() == bikeType.getClass())
newList.add(booking);
}

 
Sheriff
Posts: 22772
130
Eclipse IDE Spring VI Editor Chrome Java Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'd go with a slightly modified version of your original code:

Of course this allows also non-bike classes to be passed.

So another modification, to allow only the Bike class and its subclasses:

There is another improvement to be made now: you know that everything inside the collection will be of the given type. So:


You can now do stuff like this:

[ November 22, 2007: Message edited by: Rob Prime ]
 
Kuba Zygmunt
Ranch Hand
Posts: 37
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Great !

Thank you for showing me this approach
 
Evacuate the building! Here, take this tiny ad with you:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic