говоря о производительности java .. что лучше? if..else или несколько простых 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;
}
or
if( condition ) {
some_code;
return value;
}
if( condition ) {
some_code;
return value;
}
if( condition ) {
some_code;
return value;
}
some_code;
return value;
Заинтересованы в ваших мыслях
Спасибо!
returnв конце примераif...else if... - person Jeremy   schedule 10.11.2010