Is there an efficiency preference for one of the following control flow options for use in a loop or switch over the other?
Option 1:
switch(...){
case 1:
if (...) { ... }
else if (...) { ... }
else if (...) { ... }
.
.
.
else if (...) { ... }
break;
case 2:
.
.
.
}
Option 2:
switch(...){
case 1:
if (...) { ... break; }
if (...) { ... break; }
.
.
.
if (...) { ... break; }
case 2:
.
.
.
}
ifstatement all by itself. It's only really sensible in a loop. Without showing the containing loop, the example is a tiny bit misleading. – S.Lott Feb 2 '11 at 16:48breakstatements is extremely complex. A better example would help. A loop sometimes has extra processing at the top or bottom. It helps to clarify that also. Some of us aren't quite so brilliant and like more complete examples. – S.Lott Feb 2 '11 at 16:51