Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using an Arraylist to hold heterogeneous data...a mix of String, int and class objects (These objects could be instances of any class I've defined.). I've initialised the ArrayList as ArrayList<Object> = new ArrayList<Object>.

But I think I've heard ppl saying that directly referring to the Objects is sth. bad/undesirable? I'm referring to the objects because I can't find any suitable generics to use in my case. Is it ok to use or are there any suitable generics? (I'm relatively new to Java)

share|improve this question
4  
What are you doing with this list? My first instinct is that there may be a flaw in design/intent, even though what you're doing is perfectly "legal". – Carl Feb 25 '11 at 10:57
I'm trying to return this list and any other method that retrieves this list would extract the items in it for further processing. – mannyee Feb 25 '11 at 11:06
What processing will the client do to elements of such a list? It has to do this without any type specific knowledge.Is this what you have as your design? – Bhaskar Feb 25 '11 at 11:25
i'm starting to realise now that there's indeed the design flaw in my program.....the client will retrieve the items and display into the swt tables – mannyee Feb 25 '11 at 11:39

3 Answers

up vote 2 down vote accepted

Use different list for each type and keep those lists in a map and you can use the class object as the key so it wont mix up and easy to access.

 Map<Class<?>,List<?>> map = new HashMap<Class<?>,List<?>>();
 map.put(String.class, new ArrayList<String>());
 map.put(Integer.class, new ArrayList<Integer>());
 map.put(Class.class, new ArrayList<Class<?>>());

EDIT:

P.S: You will still get an unchecked warning when you retrieve the list from the map if you want to add new object into the list.

public static void main(String[] args) {
        Map<Class<?>,List<?>> map = new HashMap<Class<?>,List<?>>();
        map.put(String.class, new ArrayList<String>());
        map.put(Integer.class, new ArrayList<Integer>());
        map.put(Class.class, new ArrayList<Class<?>>());

        String str = "deneme";

        @SuppressWarnings("unchecked")
        List<String> strList =  (List<String>) map.get(String.class);
        strList.add(str);
        strList.add("str2");
        strList.add("str2");

        @SuppressWarnings("unchecked")
        List<Class<?>> classList =  (List<Class<?>>) map.get(Class.class);
        classList.add(String.class);
        classList.add(Integer.class);
        classList.add(Double.class);


        for(String currentStr:strList){
            System.out.println(currentStr);
        }
    }
share|improve this answer
Could you post a working example so that it becomes clearer as to why you are implementing it like the above said scenario. – Deepak Feb 25 '11 at 12:03
@Deepak At one point you will still get an unchecked cast warning, when you retrieve the list from map, it will be List<?> , if you mean that. Map is there just to keep lists in an easyly accessible way and if you dont know how many and when you will need a List<T> of an unkown type T. – fmucar Feb 25 '11 at 12:48
can u post the complete working example for such a scenario – Deepak Feb 25 '11 at 14:16
@Deepak, see above edit pls. – fmucar Feb 25 '11 at 14:31
Thanks a lot.... – Deepak Mar 7 '11 at 8:49

You really don't need to use generics, if you don't know the type of target objects beforehand.

The compiler may give a warning, but what can good men do in such evil!

Note: You can actually use unbounded and wildcards to ignore the warning but I am not sure whether it will help otherwise.

share|improve this answer
well i've used ArrayList`<?`> too but its not working either – mannyee Feb 25 '11 at 10:59

Whenever you put an Object as a generic classifier you'll end up with alot of ugly statements, like

if (elem instanceOf String)
else if (elem instanceOf Integer)

and so on. Often it's better to use a separate list for each, e.g.,

List<String> strings = new LinkedList<String>();
List<Integer> ints = new LinkedList<Integer>();

Hence I would advice you to redesign your program to make better use of the features java fascilitates.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.