Something I've wondered for awhile as it seems to crop up in my in-experienced code quite a bit.
I have some code that uses a switch statement a lot, but all its really doing is accessing a different queue each time.
void store(int toSwitchOn, float posx, float posy){
myDataStruct newValue;
newValue.psX = posx;
newValue.psY = posy;
switch(toSwitchOn){
case 1:
queue1.push(newValue);
break;
case 2:
queue2.push(newValue);
break;
case 3:
queue3.push(newValue);
break;
case 4:
queue4.push(newValue);
break;
case 5:
queue5.push(newValue);
break;
}
}
The only thing that changes in each statement is the queue variable. Is there some ingenious way to condense this sort of repetitive code?
std::vector<std::queue<someType> > &. – chris Apr 23 '12 at 20:54