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 séparer par un saut de ligne
if( VeryLongConditionMethod(a) &&
VeryLongConditionMethod(b) &&
VeryLongConditionMethod(c))
{
//This is still readable
}
Si elles sont encore plus compliquées, j'envisagerais d'appliquer 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 pour l'option 'B' serait si vous avez des systèmes séparés. else
fonctions à exécuter pour chaque condition.
par exemple
if( a )
{
if( b )
{
}
else
{
//Do Something Else B
}
}
else
{
//Do Something Else A
}