📜  C#– Break语句(1)

📅  最后修改于: 2023-12-03 15:30:18.375000             🧑  作者: Mango

C# - Break语句

什么是Break语句?

Break语句是一种控制流结构,它用于强制终止switch、while、do-while和for语句中的循环。Break语句通常与条件语句一起使用,以实现当满足一定条件时退出循环的目的。

Break语句的语法

在C#中,Break语句的语法如下所示:

break;
Break语句的使用

在下面的代码示例中,我们将演示如何使用Break语句:

using System;

class Program
{
    static void Main(string[] args)
    {
        int[] numbers = { 1, 2, 3, 4, 5 };

        // 循环遍历数组
        foreach (int number in numbers)
        {
            Console.Write(number + " ");

            // 如果数值为3,则执行break语句
            if (number == 3)
            {
                Console.WriteLine("\nFound 3!");
                break;
            }
        }

        Console.ReadKey();
    }
}

输出结果如下所示:

1 2 3 
Found 3!

在上面的代码示例中,我们首先定义了一个整数数组,然后使用foreach循环遍历该数组。在循环中,我们使用条件语句检查数组中的值是否为3。如果是,我们将输出“Found 3!”,并使用Break语句终止循环。否则,我们将输出该数字。