vote up 1 vote down star

Hello,
This is probably really simple but I really could not word it properly on Google. See, I have a ArrayList that keeps the info for each thread. Each thread has it's own ID. So, at the beggining:

myList.add(theIdOfTheThread, new InfoForTheThread()); //Add new thread info at index theIdOfTheThread

And when I want info:

myList.get(myId); //The info for the thread

But, I always get OutOfRangeExceptions whenever a lower thread finishes and removes it's entry, etc. So, I am sure there must be a better class to use for this, where I can just put entries in at any index I want, and pull them out at any index I want and they stay.
Thanks, Isaac Waller

flag

2 Answers

vote up 8 vote down check

For that kind of access you should really be using an array, or better, a HashMap. Using a list for this is very inefficient and needlessly complicated. If you ever remove an item from the middle of the list everything will move down, and all the indices above the one you removed will require moving down.

An array of InfoForTheThread won't suffer this, but you'll need to know the size of the array you'll need before you start.

Use a HashMap instead - you can use Integers for the keys, and removal won't result in a resequencing.

HashMap<Integer,InfoForTheThread> myInfos = new HashMap<Integer,InfoForTheThread>( 10 );

Adding, retrieving and removing an entry:

myInfos.put( Integer.valueOf( 4 ), new InfoForTheThread() );
InfoForTheThread infoForFour = myInfos.get( Integer.valueOf( 4 ) );
InfoForTheThread infoForFour = myInfos.remove( Integer.valueOf( 4 ) );
link|flag
Since you are using java 1.5 anyway, why not use the auto boxing/unboxing? – Bogdan Feb 28 at 22:44
Force of habit. Where I work autoboxing is considered harmful and is set to flag an error in the compiler. – banjollity Mar 1 at 7:40
vote up 2 vote down

Try a hashtable. you can use the thread id as the key and then insert your info as the values.

link|flag
I agree. As an example: Hashtable<Integer, ThreadInfo> threads = new Hashtable<Integer, ThreadInfo> // store thread info by id threads.put(threadId, threadInfo); //get thread info by id threads.get(threadId); //will be null if no thread with that id – John Ellinwood Feb 28 at 22:35
Unless you have some esoteric threading concerns that require everything to be synchronized, never use Java's Hashtable class. Always use HashMap instead (and you can use a synchronized wrapper if need be). – MetroidFan2002 Mar 1 at 18:08

Your Answer

Get an OpenID
or

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