Skip to content

Latest commit

 

History

History
82 lines (59 loc) · 1.96 KB

File metadata and controls

82 lines (59 loc) · 1.96 KB

C++ goto语句

原文: https://www.programiz.com/cpp-programming/goto

在本文中,您将了解goto语句,它如何工作以及为什么应该避免它。

在 C++ 编程中,goto语句用于通过将控制权转移到程序的其他部分来更改程序执行的正常顺序。

goto语句的语法

goto label;
... .. ...
... .. ...
... .. ...
label: 
statement;
... .. ...

在以上语法中,label是标识符。 遇到goto label;时,程序控制跳至label:并执行其下面的代码。

Working of goto statement in C++ programming

示例:goto语句

// This program calculates the average of numbers entered by user.
// If user enters negative number, it ignores the number and 
// calculates the average of number entered before it.

# include <iostream>
using namespace std;

int main()
{
    float num, average, sum = 0.0;
    int i, n;

    cout << "Maximum number of inputs: ";
    cin >> n;

    for(i = 1; i <= n; ++i)
    {
        cout << "Enter n" << i << ": ";
        cin >> num;

        if(num < 0.0)
        {
           // Control of the program move to jump:
            goto jump;
        } 
        sum += num;
    }

jump:
    average = sum / (i - 1);
    cout << "\nAverage = " << average;
    return 0;
}

输出

Maximum number of inputs: 10
Enter n1: 2.3
Enter n2: 5.6
Enter n3: -5.6

Average = 3.95

您可以在不使用goto语句的情况下编写任何 C++ 程序,通常认为最好不要使用它们。

避免使用goto语句的原因

goto语句可以跳转到程序的任何部分,但会使程序的逻辑变得复杂而混乱。

在现代编程中,goto语句被认为是有害的构造和不良的编程习惯。

在大多数 C++ 程序中,可以使用breakcontinue语句替换goto语句。