我需要知道以下哪个示例给了我更高的性能?
Object O = someValue;
if (condition){
//statements
//statements
} else {
//statements
//statements
}
或者
Object O;
if (condition){
O = someValue;
//statements
//statements
} else {
O = someValue;
//statements
//statements
}
或者
if (condition){
Object O = someValue;
//statements
//statements
} else {
Object O = someValue;
//statements
//statements
}
注意: someValue 在所有情况下都是相等的