In programming, sometimes there is a need to perform some operation more than once or (say) n number of times. Loops come into use when we need to repeatedly execute a block of statements.
在编程中,有时需要多次执行某些操作,例如n次。当我们需要重复执行一个语句块时,就会使用循环。
4 types of loops:
① Entry Controlled loops: while loop, for loop
② Exit Controlled Loops:
③ Range-based for loop
④ For_each loop
可以理解后两种循环是前两种循环的语法糖,编程语法制定语法规则,确定如何抽象,编程语言的编译器实现抽象的编译,程序员按规则写代码。
1 Entry Controlled loops
In this type of loop, the test condition is tested before entering the loop body. For Loop and While Loop is entry-controlled loops.
在这种类型的循环中,在进入循环体之前测试测试条件。For循环和While循环是入口控制循环。
1.1 for loop
#include int main(){ int i=0; for (i = 1; i <= 10; i++) { printf( "Hello World
"); } return 0;}
1.2 while loop
#include int main(){ // initialization expression int i = 1; // test expression while (i < 6) { printf( "Hello World
"); // update expression i++; } return 0;}
2 Exit Controlled Loops:
In this type of loop the test condition is tested or evaluated at the end of the loop body. Therefore, the loop body will execute at least once, irrespective of whether the test condition is true or false. the do-while loop is exit controlled loop.
在这种类型的循环中,在循环体的末端测试或评估测试条件。因此,无论测试条件是真还是假,循环体将至少执行一次。do while循环是出口控制循环。
#include int main(){ int i = 2; // Initialization expression do { // loop body printf( "Hello World
"); // update expression i++; } while (i < 1); // test expression return 0;}
3 Range-based for loop
Range-based for loop in C++ is added since C++ 11. It executes a for loop over a range. Used as a more readable equivalent to the traditional for loop operating over a range of values, such as all elements in a container.
C++中基于范围的for循环是从C++11开始添加的。它在一个范围内执行for循环。用作在一系列值(例如容器中的所有元素)上进行操作的传统for循环的可读性更强的等价物。
syntax:
for ( range_declaration : range_expression ) loop_statementParameters :range_declaration : a declaration of a named variable, whose type is the type of the element of the sequence represented by range_expression, or a reference to that type.Often uses the auto specifier for automatic type deduction.range_expression : any expression that represents a suitable sequence or a braced-init-list.loop_statement : any statement, typically a compound statement, whichis the body of the loop.
code demo:
#include #include #include