我想打破一个 else if 条件,它有一个内部 if 条件,如果里面的内部 if 条件如下所示,请给我一个建议。
if(condition1=true){
}
else if(condition2=true){
if(condition3=true){
do activity 1;
//I want to break here if condition3 is true, without executing activity 2 & 3
}
do activity 2;
do activity 3;
}