do...while
Descrição
O loop do...while funciona da mesma forma que o loop while, com a exceção de a condição ser testada no final do loop, tal que o loop será executado pelo menos uma vez.
Sintaxe
A condição é uma expressão booleana que é avaliada como verdadeiro ou falso, respectivamente true ou false na linguagem Arduino.
Código de Exemplo
Código de Exemplo 1
The result on Serial Monitor:
Código de Exemplo 2
do...while loop vs while loop
The while loop checks the condition before executing the block of code; conversely, the do while loop checks the condition after executing the block of code. Therefore, the do while loop will always be executed at least once, even if the condition is false at the beginning.
The do...while and while loop are the same, except for the case in which the condition is false at the beginning.
For example:
- Code with do...while loop
- Code with while loop
※ Notas e Advertências:
There are three ways to escape the do while loop:
Ver Também
※ ARDUINO BUY RECOMMENDATION
Arduino UNO R3 | |
Arduino Starter Kit |
Additionally, some links direct to products from our own brand, DIYables.