百科问答小站 logo
百科问答小站 font logo



c#有没有简洁的方法跳出外层循环,类似Java那样使用标记的方式? 第1页

  

user avatar   rednaxelafx 网友的相关建议: 
       Let me google that for you

看搜索结果里头几个爆栈站的回答就够了。

简单来说C#没有Java能给循环打label的语法,所以没有直接对应的办法。

解决方案有三个流派:

  1. goto派:直接在外层循环后面放个label,在内层循环里需要跳出外层循环时用goto到那个label。要知道Java的labeled break本质上就是用于这个用途的受限版goto,用在这里再合适不过了。 <- 我是这个流派的。
  2. flag派:在外层循环前声明个bool flag,然后在内层循环结束后检查一下该flag有没有说要跳出循环:
    bool flag = false; for (...) {   for (...) {     if (...) {       flag = true;       break;     }   }   if (flag) break; }
    这大概是所谓“正统派”。
  3. 把内层循环封装成一个返回bool的方法,外层循环调用这个方法看返回值决定要不要break。

还有更变态的用抛/接异常来做的…滥用异常实现控制流派。这是异端,好孩子不要学,所以不列在“三个流派”中。不过我们也不能教条的批判它,也得看看它有趣的一面,例如:

Unchecked Exceptions Can Be Strictly More Powerful Than Call/CC
goto (C# Reference)

- MSDN

The goto statement transfers the program control directly to a labeled statement.

A common use of goto is to transfer control to a specific switch-case label or the default label in a switch statement.

The goto statement is also useful to get out of deeply nested loops.

C#规范说:

A label can be referenced from goto statements within the scope of the label. [Note: This means that goto statements can transfer control within blocks and out of blocks, but never into blocks. end note]

The target of a goto identifier statement is the labeled statement with the given label. If a label with the given name does not exist in the current function member, or if the goto statement is not within the scope of the label, a compile-time error occurs. [Note: This rule permits the use of a goto statement to transfer control out of a nested scope, but not into a nested scope. In the example
using System; class Test {   static void Main(string[] args) {     string[,] table = {       {"red", "blue", "green"},       {"Monday", "Wednesday", "Friday"}     };     foreach (string str in args) {       int row, colm;       for (row = 0; row <= 1; ++row)         for (colm = 0; colm <= 2; ++colm)           if (str == table[row,colm])             goto done;       Console.WriteLine("{0} not found", str);       continue;     done:       Console.WriteLine("Found {0} at [{1}][{2}]", str, row, colm);     }   } } 
a goto statement is used to transfer control out of a nested scope. end note]



  

相关话题

  用Objective-C或C#开发iOS程序各有什么优点或缺点? 
  为什么微软建议超过64字节不要使用结构? 
  为什么unity愿意用c#作为代码语言,而虚幻却使用c++? 
  ADO.NET的SqlParameter(String, Object)的构造函数第二个参数不能为0? 
  为什么大部分程序员都喜欢用黑色界面? 
  编程该怎么学下去(C#)? 
  .net程序卡死是不是和修复的漏洞有关系? 
  为什么很多人都说使用微软技术的公司是小公司?是不是微软的技术入门简单? 
  .Net的垃圾回收机制是定时执行还是事件触发? 
  C# 语言和 .NET 框架相比 Java、PHP、Python 等 web 开发技术有哪些优劣? 

前一个讨论
样式(presentation)和内容(content)分别指什么?总能分离吗?
下一个讨论
为什么淘宝直通车采用 CPC,不采用 CPS?





© 2025-01-03 - tinynew.org. All Rights Reserved.
© 2025-01-03 - tinynew.org. 保留所有权利