たくさんのifステートメントがあったとしましょう。
それらの1つが解決され、その中のコードが実行されたとしましょう。他の条件が失敗した場合に、ブロックが終了すると、残りのステートメントのチェックを続行するようにできますか?例えば
if(condition){
}elseif(condition2){
//If this code runs, but there are some more conditions within it that fail.
//I want the code to continue but
//continue checking condition3 and condition4. Not exiting the whole block with
//continue, nor do I want it to start again.
}elseif(condition3){
}elseif(condition4){
}else{
}
これが何らかの意味をなすといいのですが。