我有两个问题 - (I)
code-fragment-1
if(<condition-statement>){
}
else if(<condition-statement-2>){
//statements-1
}
//statements-2
代码片段 2
if(<condition-statement>){
}
else{
if(<condition-statement-2>){
//statements-1
}
//statements-2
}
上面两个代码片段是一样的吗?
(II) 什么时候使用else if
s(在 C++ 中)?