You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
villares edited this page May 24, 2020
·
4 revisions
Nome
break
Exemplos
char letter ='B';
switch(letter) {
case'A':println("Alpha"); // Não é executado break;
case'B':println("Bravo"); // Imprime "Bravo" break;
default:println("Zulu"); // Não é executado break;
}
Descrição
Termina a execução de uma estrutura como switch(), for(), or while(), e pula para o comando imediatamente seguinte