码迷,mamicode.com
首页 > 其他好文 > 详细

自定义集合支持使用 foreach循环访问该集合

时间:2014-05-26 08:25:31      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:style   c   class   code   ext   a   

自定义集合支持使用 foreach循环访问该集合,需要实现 IEnumerableIEnumerator 接口。

using System;
using System.Collections;

public class Person
{
   
public Person(string fName, string lName)
   {
      
this.firstName = fName;
      
this.lastName = lName;
   }

   
public string firstName;
   
public string lastName;
}

public class People : IEnumerable
{
   
private Person[] _people;
   
public People(Person[] pArray)
   {
      _people 
= new Person[pArray.Length];

      
for (int i = 0; i < pArray.Length; i++)
      {
         _people[i] 
= pArray[i];
      }
   }

   
public IEnumerator GetEnumerator()
   {
      
return new PeopleEnum(_people);
   }
}

public class PeopleEnum : IEnumerator
{
   
public Person[] _people;

   
// Enumerators are positioned before the first element
   
// until the first MoveNext() call.
   int position = -1;

   
public PeopleEnum(Person[] list)
   {
      _people 
= list;
   }

   
public bool MoveNext()
   {
      position
++;
      
return (position < _people.Length);
   }

   
public void Reset()
   {
      position 
= -1;
   }

   
public object Current
   {
      
get
      {
         
try
         {
            
return _people[position];
         }
         
catch (IndexOutOfRangeException)
         {
            
throw new InvalidOperationException();
         }
      }
   }
}

class Example
{
   
public static void Demo(System.Windows.Controls.TextBlock outputBlock)
   {
      Person[] peopleArray 
= new Person[3]
        {
            
new Person("John""Smith"),
            
new Person("Jim""Johnson"),
            
new Person("Sue""Rabon"),
        };

      People peopleList 
= new People(peopleArray);
      
foreach (Person p in peopleList)
         outputBlock.Text 
+= p.firstName + " " + p.lastName + "\n";

   }
}

/* This code produces output similar to the following:
 * 
 * John Smith
 * Jim Johnson
 * Sue Rabon
 * 
 
*/

自定义集合支持使用 foreach循环访问该集合,布布扣,bubuko.com

自定义集合支持使用 foreach循环访问该集合

标签:style   c   class   code   ext   a   

原文地址:http://www.cnblogs.com/freshman1987/p/3747567.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!