如何在 C# 中实现类似于 Python 的 for-else 和 while-else 的 for-else 和 foreach-else ?

发布于 2024-11-17 22:57:07 字数 502 浏览 4 评论 0原文

Python 的 forwhile 循环包含一个可选的 else 子句,如果循环正常退出(ie 没有 < em>break 语句)。例如,在 Python 中,您可以编写:

for x in range(3):
    print(x)
else
    print("The loop exited normally")

输出将是:

0
1
2
The loop exited normally

您将如何在 C# 中完成类似的操作,以便编写如下代码:

for (int i = 0; i < 3; i++)
{
    Console.WriteLine(x);                  
}
else
    Console.WriteLine("The loop exited normally");

Python's for and while loops include an optional else clause which execute if the loop exits normally (i.e. without a break statement). For example, in Python you could code:

for x in range(3):
    print(x)
else
    print("The loop exited normally")

And the output will be:

0
1
2
The loop exited normally

How would you accomplish something similar in C# in order to code something like the following:

for (int i = 0; i < 3; i++)
{
    Console.WriteLine(x);                  
}
else
    Console.WriteLine("The loop exited normally");

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

jJeQQOZ5 2024-11-24 22:57:07

foreach-else 的 Python 构造如下:

foreach( elem in collection )
{
    if( condition(elem) )
        break;
}
else
{
    doSomething();
} 

只有在 foreach 循环期间未调用 break 时,else 才会执行

C# 等效项可能是:

bool found = false;
foreach( elem in collection )
{
    if( condition(elem) )
    {
        found = true;
        break;
    }
}
if( !found )
{
    doSomething();
}

来源: Visual C# 开发人员中心

The Python Construct for foreach-else is like this:

foreach( elem in collection )
{
    if( condition(elem) )
        break;
}
else
{
    doSomething();
} 

The else only executes if break is not called during the foreach loop

A C# equivalent might be:

bool found = false;
foreach( elem in collection )
{
    if( condition(elem) )
    {
        found = true;
        break;
    }
}
if( !found )
{
    doSomething();
}

Source: The Visual C# Developer Center

心是晴朗的。 2024-11-24 22:57:07

当然:

  • 使用其他海报的奇特建议之一

  • 使用执行循环的方法,而不是break ,你可以return来避免执行循环下面的代码

  • 使用布尔变量可以在break之前设置,并在循环之后测试

  • 使用goto 而不是 break

如果你问我的话,这是一个奇怪的模式。 “Foreach”总是开始的,所以“else”这个词在那里没有意义。

Sure:

  • Use one of the fancy suggestions by the other posters

  • Use a method that performs the loop, instead of break, you can return to avoid executing code below the loop

  • Use a boolean variable you can set before you break, and test that after the loop

  • Use goto instead of break

It's a weird pattern though if you ask me. "Foreach" is always started so the word "else" does not make sense there.

聽兲甴掵 2024-11-24 22:57:07

如果您指的是 Python 中的 for-else 和 while-else 结构,有一个基本的 IEnumerable 扩展方法,可以模拟 本文,实现如下:

public static void ForEachElse<TSource>(
    this IEnumerable<TSource> source,
    Func<TSource, bool> action, Action @else)
{
    foreach (var i in source)
    {
        if (!action(i))
        {
            return;
        }
    }
    @else();
}

If you're referring to the for-else and while-else constructs in Python, there is a basic IEnumerable<T> extension method that simulates a foreach-else described in this article, with the following implementation:

public static void ForEachElse<TSource>(
    this IEnumerable<TSource> source,
    Func<TSource, bool> action, Action @else)
{
    foreach (var i in source)
    {
        if (!action(i))
        {
            return;
        }
    }
    @else();
}
七颜 2024-11-24 22:57:07

谷歌搜索给了我:http://www-jo.se/f。 pfleger/.net-for-else

public static void ForEachElse<TSource>(
this IEnumerable<TSource> source,
Func<TSource>,
bool action,
Action @else
)  // end of parameters
{
foreach (var i in source)
  {
    if (!action(i))
      {
        return;
      }
  }
   @else();
}

Googling it gave me that : http://www-jo.se/f.pfleger/.net-for-else

public static void ForEachElse<TSource>(
this IEnumerable<TSource> source,
Func<TSource>,
bool action,
Action @else
)  // end of parameters
{
foreach (var i in source)
  {
    if (!action(i))
      {
        return;
      }
  }
   @else();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文