Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (404)
games submitted by our members
Games in WIP (289)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  Generics / Design help  (Read 828 times)
0 Members and 1 Guest are viewing this topic.
Offline roland
« Posted 2012-07-22 02:09:41 »

Hey, firstly I don't think this is possible. If it isn't, can anyone recommend a better way of doing it?

I have an abstract class with one field that lots of other classes extend, each having different implementations of some abstract methods:

1  
2  
3  
4  
5  
6  
public abstract class Data
{  
   private DataType dataType;
        public abstract void ...();
        ...
}


DataType is an enum saying what type of data each instance is.

I have a map:

1  
Map<DataType, Set<Data>> allData = new HashMap<DataType, Set<Data>>();



but when i get a value out of the map,

1  
Set<Data> set = allData.get(DataType.X);



I would then have to cast each object inside set to DataX (if that is what the class is called that corresponds with DataType.X)

1  
2  
3  
4  
5  
for (Data d: set)
{
      DataX dx = (DataX) d; //There is no chance that d won't be of type DataX
     //do something with dx here...
}


But I know that all the elements inside of set are of type DataX.

Is there any way I can make it so when I get a set out of allData, I can get a set of DataX?

1  
Set<DataX> set = allData.get(DataType.X);



Thanks,
roland
Offline Danny02

JGO Knight


Medals: 36



« Reply #1 - Posted 2012-07-22 12:21:53 »

when the language is make something really hard for you, you are probably on a wrong way.
Think of another way to story your data or try to explain to us in a wider way what you want to achieve
Offline KnowYourAPI

Junior Newbie


Medals: 1



« Reply #2 - Posted 2012-07-22 12:36:31 »

I don't really know what you want to achieve with this but it looks like you rebuild the whole typing-system.

Instead of making the type of the Data object an instance variable why don't you just create a Class DataX that extends the Data-class? Then you don't have to worry what the type your Data-object is because Java will know the dynamic type of this object and will call the appropriate methods?
Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Browse for soundtracks for your game!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (54 views)
2013-05-17 21:29:12

alaslipknot (63 views)
2013-05-16 21:24:48

gouessej (94 views)
2013-05-16 00:53:38

gouessej (91 views)
2013-05-16 00:17:58

theagentd (102 views)
2013-05-15 15:01:13

theagentd (93 views)
2013-05-15 15:00:54

StreetDoggy (139 views)
2013-05-14 15:56:26

kutucuk (161 views)
2013-05-12 17:10:36

kutucuk (160 views)
2013-05-12 15:36:09

UnluckyDevil (170 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.097 seconds with 20 queries.