控制程序流程


title: c++之控制程序流程
tags:

  • 语言工具
  • c++
    categories: c++
    date: 2019-02-120
    thumbnail: https://upload-images.jianshu.io/upload_images/16271012-ba809c5e97cc4cb0.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240

控制程序流程

① 使用if -----else有条件的执行
if…else 结构的 else 部分是可选的。如果在表达式为 false 时不执行任何操作,可以不使
用这部分。


if实现嵌套
DoSomething1;
if(expression2)
DoSomething2;
else
DoSomethingElse2;
}
else
DoSomethingElse1;


② 使用switch-----case进行条件处理
语法结构如下 :

switch(expression) 
{ 
case LabelA: 
 DoSomething; 
 break; 
case LabelB: 
 DoSomethingElse; 
 break; 
// And so on... 
default: 
 DoStuffWhenExpressionIsNotHandledAbove; 
 break; 
} 

使用运算符?:进行条件处理

C++提供了一个有趣且功能强大的运算符—条件运算符,它相当于紧凑的 if-else 结构。
条件运算符也叫三目运算符,因为它使用三个操作数:
(conditional expression evaluated to bool) ? expression1 if true : expression2
if false;
可使用这个运算符获得两个数字中较大的那个:
int max = (num1 > num2)? num1 : num2;
实例:找出两个数中最大的

0: #include  
 1: using namespace std; 
 2: 
 3: int main() 
 4: { 
 5: cout << "Enter two numbers" << endl; 
 6: int num1 = 0, num2 = 0; 
 7: cin >> num1; 
 8: cin >> num2; 
 9: 
10: int max = (num1 > num2)? num1 : num2; 
11: cout << "The greater of " << num1 << " and " \ 
12: << num2 << " is: " << max << endl; 
13: 
14: return 0; 
15: } 

输出:
Enter two numbers 
365 
-1 
The greater of 365 and -1 is: 36

再循环中执行代码

①不成熟的 goto 循环

顾名思义,goto 指示跳到代码的特定位置继续执行,您可使用它回过头去再次执行特定的语句。
goto 语句的语法如下:
SomeFunction()
{
Start: // Called a label
CodeThatRepeats;
goto Start;
}

②更加优雅的while循环

while(expression)
{
// Expression evaluates to true
StatementBlock;
}
只要 expression 为 true,就将反复执行该语句块。因此,必须确保 expression 在特定条件下将为 false,
否则 while 循环将永不停止。

③它兄弟 Do -----while循环

do…while 循环的语法如下:
do
{
StatementBlock; // executed at least once
} while(condition); // ends loop if condition evaluates to false
注意到包含 while(expression)的代码行以分号结尾,这不同于前面介绍的 while 循环。在 环中,如果包含 while(expression)的代码行以分号结尾,循环将就此结束,变成一条空

③老大哥 For循环

for 循环的语法如下:
for (initial expression executed only once;
exit condition executed at the beginning of every loop;
loop expression executed at the end of every loop)
{
DoSomething;
}
for 循环让程序员能够定义并初始化一个计数器变量,在每次循环开头检查退出条件,在循环末尾
修改计数器变量的值。

④基于范围的for循环

结构如此:
for (VarType varName : sequence)
{
// Use varName that contains an element from sequence
}

程序清单 6.12 使用基于范围的 for 循环来处理数组和 std::string 
 0: #include 
 1: #include  
 2: using namespace std; 
 3: 
 4: int main() 
 5: { 
 6: int someNums[] = { 1, 101, -1, 40, 2040 }; 
 7: 
 8: for (const int& aNum : someNums) 
 9: cout << aNum << ' '; 
10: cout << endl; 
11: 
12: for (auto anElement : { 5, 222, 110, -45, 2017 }) 
13: cout << anElement << ' '; 
14: cout << endl; 
15: 
16: char charArray[] = { 'h', 'e', 'l', 'l', 'o' }; 
17: for (auto aChar : charArray) 
18: cout << aChar << ' '; 
19: cout << endl; 
20: 
21: double moreNums[] = { 3.14, -1.3, 22, 10101 }; 
22: for (auto anElement : moreNums) 
23: cout << anElement << ' '; 
24: cout << endl; 
25: 
26: string sayHello{ "Hello World!" }; 
27: for (auto anElement : sayHello) 
28: cout << anElement << ' '; 
29: cout << endl; 
30: 
31: return 0; 
32: } 
输出:
1 101 -1 40 2040 
5 222 110 -45 2017 
h e l l o 
3.14 -1.3 22 10101 
H e l l o W o r l d ! 

⑤使用 continue 和 break 修改循环的行为

continue 让您能够跳转到循环开头,跳过循环块中后面的代码。因此,在 while、do…while 和 for
循环中,continue 导致重新评估循环条件,如果为 true,则重新进入循环块。而 break 退出循环块,即结束当前循环。


文章依据21天学通C++第八版,纯属小白自学!!!!

你可能感兴趣的:(控制程序流程)