Assume I have a List<SomeObject> a.
Now also assume that I have another List<SomeProcessor> b.
Each SomeProcessor uses a for its processing.
Besides:
int idx = 0;
for(SomeProcessor o:b){
o2 = a.get(idx);
o.doSomething(o2);
idx++;
}
Is there a more elegant way to handle this?
And then a helper method:
You could put that helper method on the class which uses it, if there is only one (and make it
private), or put it a utility class which is shared by the entire program.Of course there are other ways to code
processAll; for example, you could use aforloop on one of the collections. But in any case, breaking this low-level code out into a helper method will make your higher-level code cleaner and less “noisy”. And if you are doing something similar in multiple parts of the program, they can share the helper method.