Je préfère l'option A
bool a, b, c;
if( a && b && c )
{
//This is neat & readable
}
Si vous avez des variables / conditions de méthode particulièrement longues, vous pouvez simplement les couper en ligne
if( VeryLongConditionMethod(a) &&
VeryLongConditionMethod(b) &&
VeryLongConditionMethod(c))
{
//This is still readable
}
S'ils sont encore plus compliqués, j'envisagerais de faire les méthodes de condition séparément en dehors de l'instruction 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 La seule raison de l'option «B» serait si vous avez des else
fonctions distinctes à exécuter pour chaque condition.
par exemple
if( a )
{
if( b )
{
}
else
{
//Do Something Else B
}
}
else
{
//Do Something Else A
}