Cette page n'est pas encore disponible en français, sa traduction est en cours. Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.
The widely adopted convention is putting the default statement at the end of a switch statement. By adhering to this practice, your code becomes more comprehensible and predictable for developers who engage with it in the future.
Non-Compliant Code Examples
publicclassFoo{voidbar(inta){switch(a){case1:break;default:// this should be the last statementbreak;case2:break;case3:break;}}}