Что лучше? if..else или несколько простых if

говорить о производительности java .. что лучше? if..else или multiple simple if

if( condition ) {
  some_code;
  return value;
}
else if( condition ) {
  some_code;
  return value;
}
else if( condition ) {
  some_code;
  return value;
}
else {
  some_code;
  return value;
}

или

if( condition ) {
  some_code;
  return value;
}

if( condition ) {
  some_code;
  return value;
}

if( condition ) {
  some_code;
  return value;
}

some_code;    
return value;

Интересно твои мысли

Thnx!

6
задан dnlmax 9 November 2010 в 22:57
поделиться