私はオプションAを好みます
bool a, b, c;
if( a && b && c )
{
//This is neat & readable
}
特に長い変数/メソッド条件がある場合は、それらを改行するだけです
if( VeryLongConditionMethod(a) &&
VeryLongConditionMethod(b) &&
VeryLongConditionMethod(c))
{
//This is still readable
}
さらに複雑な場合は、ifステートメントの外で条件メソッドを個別に実行することを検討します
bool aa = FirstVeryLongConditionMethod(a) && SecondVeryLongConditionMethod(a);
bool bb = FirstVeryLongConditionMethod(b) && SecondVeryLongConditionMethod(b);
bool cc = FirstVeryLongConditionMethod(c) && SecondVeryLongConditionMethod(c);
if( aa && bb && cc)
{
//This is again neat & readable
//although you probably need to sanity check your method names ;)
}
IMHOオプション 'B'の唯一の理由else
は、条件ごとに実行する個別の関数がある場合です。
例えば
if( a )
{
if( b )
{
}
else
{
//Do Something Else B
}
}
else
{
//Do Something Else A
}