Here is how I usually do it:
// Somewhere define a static final int NUM_THREADS that is appropriate.
ExecutorService exec = Executors.newFixedThreadPool( NUM_THREADS );
// There are other options: look at what the Executors class has to offer.
List<SomeOtherClass> list = new ArrayList<SomeOtherClass>();
List<Future<SomeOtherClass>> list = new ArrayList<Future<SomeOtherClass>>();
for( SomeClass sc : originalList )
futures.add( submit( new someOperation( sc ) ) );
for( Future<SomeOtherClass> future : futures )
list.add( future.get() ); // Again, see the docs, you can also set a timeout.
exec.shutdown(); // Important. Otherwise the threads stay alive.
someOperation is then defined as a callable
class someOperation extends Callable<SomeOtherClass> {
private SomeClass input;
public someOperation( SomeClass input ){
this.input = input;
}
public SomeOtherClass call(){
// Do your operation on 'input' here
}
}
Note: I didn't have any try-catch blocks here, but you will have to have some. shutdown should be in the finally block. I just don't remember what throws what ATM, your IDE should help you with that.