switch()...case

Like if statements, switch...case controls the flow of programs by allowing programmers to specify different code that should be executed in various conditions. In particular, a switch statement compares the value of a variable to the values specified in case statements. When a case statement is found whose value matches that of the variable, the code in that case statement is run.

The break keyword exits the switch statement, and is typically used at the end of each case. Without a break statement, the switch statement will continue executing the following expressions ("falling-through") until a break, or the end of the switch statement is reached.

Exemplo

// exemplo de código

Note

Please note that in order to declare variables within a case brackets are needed. An example is showed below.

Exemplo

switch (var) {

case 1:

{

//do something when var equals 1

int a = 0;

.......

.......

}

break;

default:

// if nothing else matches, do the default

// default is optional

break;

}

Syntax

Exemplo

switch (var) {

case label:

// statements

break;

case label:

// statements

break;

default:

// statements

break;

}

texto

Exemplo

// exemplo de código

Parameters

var: the variable whose value to compare to the various cases

label: a value to compare the variable to

See also:

if...else

Retornar para a página de referencia

As informações acima foram compiladas a partir do site Arduino.cc e os códigos de exemplos são considerados de domínio público.

Por favor, se por acaso encontrar algum erro ou quizer sugerir alguma melhoria, copie o endereço desta página e envie o formulário na página de Contato escolhendo o assunto desejado.