当前位置:  编程技术>.net/c#/asp.net

C#:foreach与yield语句的介绍

    来源: 互联网  发布时间:2014-10-16

    本文导语:  1. foreach语句 C#编译器会把foreach语句转换为IEnumerable接口的方法和属性。 代码如下: foreach (Person p in persons) { Console.WriteLine(p); }foreach语句会解析为下面的代码段。 •调用GetEnumerator()方法,获得数组的一个枚举•在while循环...

1. foreach语句

C#编译器会把foreach语句转换为IEnumerable接口的方法和属性。

代码如下:

 foreach (Person p in persons)
 {
 Console.WriteLine(p);
 }

foreach语句会解析为下面的代码段。

•调用GetEnumerator()方法,获得数组的一个枚举
•在while循环中,只要MoveNext()返回true,就一直循环下去
•用Current属性访问数组中的元素

代码如下:

 IEnumerator enumerator = persons. GetEnumerator();
 while (enumerator.MoveNext())
 {
 Person p = (Person) enumerator.Current;
 Console.WriteLine(p);
 }

2. yield语句

•yield语句的两种形式:

代码如下:

 yield return ;
 yield break;
 

•使用一个yield return语句返回集合的一个元素
•包含yield语句的方法或属性是迭代器。迭代器必须满足以下要求
a. 返回类型必须是IEnumerable、IEnumerable、IEnumerator或 IEnumerator。

b. 它不能有任何ref或out参数

•yield return语句不能位于try-catch快。yield return语句可以位于try-finally的try块

代码如下:

try
             {
                 // ERROR: Cannot yield a value in the boday of a try block with a catch clause
                 yield return "test";
             }
             catch
             { }

             try
             {
                 //
                 yield return "test again";
             }
             finally
             { }

             try
             { }
             finally
             {
                 // ERROR: Cannot yield in the body of a finally clause
                 yield return "";
             }

yield break语句可以位于try块或catch块,但是不能位于finally块
 

下面的例子是用yield return语句实现一个简单集合的代码,以及用foreach语句迭代集合

代码如下:

using System;
 using System.Collections.Generic;

 namespace ConsoleApplication6
 {
     class Program
     {
         static void Main(string[] args)
         {
             HelloCollection helloCollection = new HelloCollection();
             foreach (string s in helloCollection)
             {
                 Console.WriteLine(s);
                 Console.ReadLine();
             }
         }
     }

     public class HelloCollection
     {

         public IEnumerator GetEnumerator()
         {
             // yield return语句返回集合的一个元素,并移动到下一个元素上;yield break可以停止迭代
             yield return "Hello";
             yield return "World";
         }
     }
 }

使用yield return语句实现以不同方式迭代集合的类:

代码如下:

using System;
 using System.Collections.Generic;

 namespace ConsoleApplication8
 {
     class Program
     {
         static void Main(string[] args)
         {
             MusicTitles titles = new MusicTitles();
             foreach (string title in titles)
             {
                 Console.WriteLine(title);
             }
             Console.WriteLine();

             foreach (string title in titles.Reverse())
             {
                 Console.WriteLine(title);
             }
             Console.WriteLine();

             foreach (string title in titles.Subset(2, 2))
             {
                 Console.WriteLine(title);
                 Console.ReadLine();
             }
         }
     }

     public class MusicTitles
     {
         string[] names = { "a", "b", "c", "d" };
         public IEnumerator GetEnumerator()
         {
             for (int i = 0; i < 4; i++)
             {
                 yield return names[i];
             }
         }

         public IEnumerable Reverse()
         {
             for (int i = 3; i >= 0; i--)
             {
                 yield return names[i];
             }
         }

         public IEnumerable Subset(int index, int length)
         {
             for (int i = index; i < index + length; i++)
             {
                 yield return names[i];
             }
         }
     }
 }

输出:


    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • ThinkPHP之foreach标签使用概述
  • PHP中多维数组的foreach遍历示例
  • php foreach正序倒序输出示例代码
  • 浅析java的foreach循环
  • php foreach正序倒序输出示例
  • java程序中foreach用法示例
  • PHP的foreach中使用引用时需要注意的一个问题和解决方法
  • php遍历数组list foreach each方法实例
  • jsp简单自定义标签的forEach遍历及转义字符示例


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3