dnl*_*max 6 java performance if-statement
谈论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;
}
Run Code Online (Sandbox Code Playgroud)
要么
if( condition ) {
some_code;
return value;
}
if( condition ) {
some_code;
return value;
}
if( condition ) {
some_code;
return value;
}
some_code;
return value;
Run Code Online (Sandbox Code Playgroud)
对你的想法感兴趣
Thnx!
| 归档时间: |
|
| 查看次数: |
7555 次 |
| 最近记录: |