Arduino - for循环



一个for循环会执行语句预定次数。循环的控制表达式在for循环括号内初始化、测试和操作。由于它独立于循环内的活动,因此很容易调试循环结构的行为。

每个for循环最多有三个表达式,它们决定了它的操作。下面的例子展示了一般的for循环语法。请注意,for循环参数括号中的三个表达式用分号分隔。

for循环语法

for ( initialize; control; increment or decrement) {
   // statement block
}

示例

for(counter = 2;counter <= 9;counter++) {
   //statements block will executed 10 times
}

for循环执行顺序

For Loop
arduino_loops.htm
广告