如何在 C# 中实现类似于 Python 的 for-else 和 while-else 的 for-else 和 foreach-else ?
Python 的 for 和 while 循环包含一个可选的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
foreach-else 的 Python 构造如下:
只有在 foreach 循环期间未调用 break 时,else 才会执行
C# 等效项可能是:
来源: Visual C# 开发人员中心
The Python Construct for foreach-else is like this:
The else only executes if break is not called during the foreach loop
A C# equivalent might be:
Source: The Visual C# Developer Center
当然:
使用其他海报的奇特建议之一
使用执行循环的方法,而不是
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 canreturn
to avoid executing code below the loopUse a boolean variable you can set before you
break
, and test that after the loopUse
goto
instead ofbreak
It's a weird pattern though if you ask me. "Foreach" is always started so the word "else" does not make sense there.
如果您指的是 Python 中的 for-else 和 while-else 结构,有一个基本的
IEnumerable
扩展方法,可以模拟 本文,实现如下: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:谷歌搜索给了我:http://www-jo.se/f。 pfleger/.net-for-else
Googling it gave me that : http://www-jo.se/f.pfleger/.net-for-else