Я віддаю перевагу варіанту А
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
}