IEnumerable与IEnumerator区别

2024-03-23 10:18

本文主要是介绍IEnumerable与IEnumerator区别,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

IEnumerator:提供在普通集合中遍历的接口,有Current,MoveNext(),Reset(),其中Current返回的是object类型。
IEnumerable: 暴露一个IEnumerator,支持在普通集合中的遍历。
IEnumerator<T>:继承自IEnumerator,有Current属性,返回的是T类型。
IEnumerable<T>:继承自IEnumerable,暴露一个IEnumerator<T>,支持在泛型集合中遍历。

1. 要使自定义的集合类型支持foreach访问,就要实现IEnumerable接口。

2. 在很多地方有讨论为什么新增加的泛型接口IEnumerable<T>要继承IEnumerable,这是为了兼容。理论上所有的泛型接口都要继承自所有的非泛型接口。例如在.net 1.1中有个方法接收的是IEnumerable类型的参数,当移植到新的环境下,我们传入一个IEnumerable<T>的参数,它也是可以被接受的,因为他们完成的都是枚举的行为。

然而特殊的是IList<T>没有继承自IList接口,因为如果让IList<T>继承IList的话,那么是实现IList<int>的类就需要实现两个Insert方法,一个是IList<int>的void Insert(int index, int item),另外一个是IList的void Insert(int index, object item),这是就有一个接口可以把object类型的数据插入到IList<int>集合中了,这是不对的,所以不继承。

而IEnumerable<T>不同的是,它只有”输出“的作用,也就是说我们只会从它里面取数据,所以不会有上面描述的混乱出现。

3. 下面的例子描述了如何使用
首先,有一个Person类:


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

        
public string firstName;
        
public string lastName;
    }


第一种方式实现People集合:


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();
                }
            }
        }
    }


第二种方式,让People自己也实现IEnumerator接口:


    public class People : IEnumerable, IEnumerator
    {
        
private Person[] _people;
        
int position = -1;

        
public People(Person[] pArray)
        {
            _people 
= new Person[pArray.Length];

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

        
#region IEnumerable Members

        
public IEnumerator GetEnumerator()
        {
            
return this;
        }

        
#endregion

        
#region IEnumerator Members

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

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

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

        
#endregion
    }


第三种方式,用泛型指定了类型:


public class People : IEnumerable<Person>, IEnumerator<Person>
    {
        
private Person[] _people;
        
int position = -1;

        
public People(Person[] pArray)
        {
            _people 
= new Person[pArray.Length];

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

        
#region IEnumerable<Person> Members

        
public IEnumerator<Person> GetEnumerator()
        {
            
return this;
        }

        
#endregion

        
#region IEnumerable Members

        IEnumerator IEnumerable.GetEnumerator()
        {
            
return this;
        }

        
#endregion

        
#region IEnumerator<Person> Members

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

        
#endregion

        
#region IDisposable Members

        
public void Dispose()
        {
        }

        
#endregion

        
#region IEnumerator Members

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

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

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

        
#endregion
    }


然后就可以用foreach对自定义集合访问了:
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)
                Console.WriteLine(p.firstName 
+ " " + p.lastName);

下面介绍yield关键字的用法:

注意两点:第一,它只能用在一个iterator的方法中,也就是说这个方法的返回值类型只能是IEnumerableIEnumeratorIEnumerable<T>IEnumerator<T>;第二,它只有两种语法:yield return 表达式;或者是yield break
例如下面用yield return返回循环中每一个满足条件的值,但是并不退出方法:
public static class NumberList
{
// Create an array of integers.
public static int[] ints = { 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377 };
// Define a property that returns only the even numbers.
public static IEnumerable<int> GetEven()
{
// Use yield to return the even numbers in the list.

foreach (int i in ints)

if (i % 2 == 0)
yield return i;
}
}

调用的地方如下:
// Display the even numbers.
Console.WriteLine("Even numbers");
foreach (int i in NumberList.GetEven())
Console.WriteLine(i);

在这种用iterator的循环中,只能用yield break退出循环(也退出了整个方法),若是用break是编译不过的。例如:
public static IEnumerable<int> GetEven()
{
// Use yield to return the even numbers in the list.

foreach (int i in ints)
if (i % 2 == 0)
yield break;

Console.WriteLine();
}
如果yield break;会被执行到的话,则后面的Console.WriteLine();是不会被执行的,整个方法体已经在yield break被执行后就退出了。

另外下面这种写法:
IEnumerable<int> GetValues()
        {
            yield return 1;
            yield return 2;
            yield return 3;
            yield return 4;
        }
则可以用
foreach (int i in this.GetValues())
            {
                Console.WriteLine(i);
            }
来输出,第一次取第一个yield return的值1,第二次取第二个yield return的值2,依此类推。

public interface IEnumerable
{
    IEnumerator GetEnumerator();
}
 
public interface IEnumerator
{
    bool MoveNext();
    void Reset();
 
    Object Current { get; }
}
 
IEnumerable和IEnumerator有什么区别?这是一个很让人困惑的问题(在很多forum里都看到有人在问这个问题)。研究了半天,得到以下几点认识:
 
1、一个Collection要支持foreach方式的遍历,必须实现IEnumerable接口(亦即,必须以某种方式返回IEnumerator object)。
 
2、IEnumerator object具体实现了iterator(通过MoveNext(),Reset(),Current)。
 
3、从这两个接口的用词选择上,也可以看出其不同:IEnumerable是一个声明式的接口,声明实现该接口的class是“可枚举(enumerable)”的,但并没有说明如何实现枚举器(iterator);IEnumerator是一个实现式的接口,IEnumerator object就是一个iterator。
 
4、IEnumerable和IEnumerator通过IEnumerable的GetEnumerator()方法建立了连接,client可以通过IEnumerable的GetEnumerator()得到IEnumerator object,在这个意义上,将GetEnumerator()看作IEnumerator object的factory method也未尝不可。


IEnumerator   是所有枚举数的基接口。  
   
  枚举数只允许读取集合中的数据。枚举数无法用于修改基础集合。  
   
  最初,枚举数被定位于集合中第一个元素的前面。Reset   也将枚举数返回到此位置。在此位置,调用   Current   会引发异常。因此,在读取   Current   的值之前,必须调用   MoveNext   将枚举数提前到集合的第一个元素。  
   
  在调用   MoveNext   或   Reset   之前,Current   返回同一对象。MoveNext   将   Current   设置为下一个元素。  
   
  在传递到集合的末尾之后,枚举数放在集合中最后一个元素后面,且调用   MoveNext   会返回   false。如果最后一次调用   MoveNext   返回   false,则调用   Current   会引发异常。若要再次将   Current   设置为集合的第一个元素,可以调用   Reset,然后再调用   MoveNext。  
   
  只要集合保持不变,枚举数就将保持有效。如果对集合进行了更改(例如添加、修改或删除元素),则该枚举数将失效且不可恢复,并且下一次对   MoveNext   或   Reset   的调用将引发   InvalidOperationException。如果在   MoveNext   和   Current   之间修改集合,那么即使枚举数已经无效,Current   也将返回它所设置成的元素。  
   
  枚举数没有对集合的独占访问权;因此,枚举一个集合在本质上不是一个线程安全的过程。甚至在对集合进行同步处理时,其他线程仍可以修改该集合,这会导致枚举数引发异常。若要在枚举过程中保证线程安全,可以在整个枚举过程中锁定集合,或者捕捉由于其他线程进行的更改而引发的异常。 

这篇关于IEnumerable与IEnumerator区别的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/838000

相关文章

native和static native区别

本文基于Hello JNI  如有疑惑,请看之前几篇文章。 native 与 static native java中 public native String helloJni();public native static String helloJniStatic();1212 JNI中 JNIEXPORT jstring JNICALL Java_com_test_g

Android fill_parent、match_parent、wrap_content三者的作用及区别

这三个属性都是用来适应视图的水平或者垂直大小,以视图的内容或尺寸为基础的布局,比精确的指定视图的范围更加方便。 1、fill_parent 设置一个视图的布局为fill_parent将强制性的使视图扩展至它父元素的大小 2、match_parent 和fill_parent一样,从字面上的意思match_parent更贴切一些,于是从2.2开始,两个属性都可以使用,但2.3版本以后的建议使

Collection List Set Map的区别和联系

Collection List Set Map的区别和联系 这些都代表了Java中的集合,这里主要从其元素是否有序,是否可重复来进行区别记忆,以便恰当地使用,当然还存在同步方面的差异,见上一篇相关文章。 有序否 允许元素重复否 Collection 否 是 List 是 是 Set AbstractSet 否

javascript中break与continue的区别

在javascript中,break是结束整个循环,break下面的语句不再执行了 for(let i=1;i<=5;i++){if(i===3){break}document.write(i) } 上面的代码中,当i=1时,执行打印输出语句,当i=2时,执行打印输出语句,当i=3时,遇到break了,整个循环就结束了。 执行结果是12 continue语句是停止当前循环,返回从头开始。

maven发布项目到私服-snapshot快照库和release发布库的区别和作用及maven常用命令

maven发布项目到私服-snapshot快照库和release发布库的区别和作用及maven常用命令 在日常的工作中由于各种原因,会出现这样一种情况,某些项目并没有打包至mvnrepository。如果采用原始直接打包放到lib目录的方式进行处理,便对项目的管理带来一些不必要的麻烦。例如版本升级后需要重新打包并,替换原有jar包等等一些额外的工作量和麻烦。为了避免这些不必要的麻烦,通常我们

ActiveMQ—Queue与Topic区别

Queue与Topic区别 转自:http://blog.csdn.net/qq_21033663/article/details/52458305 队列(Queue)和主题(Topic)是JMS支持的两种消息传递模型:         1、点对点(point-to-point,简称PTP)Queue消息传递模型:         通过该消息传递模型,一个应用程序(即消息生产者)可以

深入探讨:ECMAScript与JavaScript的区别

在前端开发的世界中,JavaScript无疑是最受欢迎的编程语言之一。然而,很多开发者在使用JavaScript时,可能并不清楚ECMAScript与JavaScript之间的关系和区别。本文将深入探讨这两者的不同之处,并通过案例帮助大家更好地理解。 一、什么是ECMAScript? ECMAScript(简称ES)是一种脚本语言的标准,由ECMA国际组织制定。它定义了语言的语法、类型、语句、

Lua 脚本在 Redis 中执行时的原子性以及与redis的事务的区别

在 Redis 中,Lua 脚本具有原子性是因为 Redis 保证在执行脚本时,脚本中的所有操作都会被当作一个不可分割的整体。具体来说,Redis 使用单线程的执行模型来处理命令,因此当 Lua 脚本在 Redis 中执行时,不会有其他命令打断脚本的执行过程。脚本中的所有操作都将连续执行,直到脚本执行完成后,Redis 才会继续处理其他客户端的请求。 Lua 脚本在 Redis 中原子性的原因

msys2 minggw-w64 cygwin wsl区别

1 mingw-w64,这是gcc一直win平台下产生的,所以是win版的gcc,既支持32也支持64bit 2cygwin专注于原样在windows上构建unix软件, 3msys让Linux开发者在windows上运行软件,msys2专注于构建针对windows api构建的本机软件 4 wsl  windows subsystem for linux 是一个在windows 10 上能

【Java中的位运算和逻辑运算详解及其区别】

Java中的位运算和逻辑运算详解及其区别 在 Java 编程中,位运算和逻辑运算是常见的两种操作类型。位运算用于操作整数的二进制位,而逻辑运算则是处理布尔值 (boolean) 的运算。本文将详细讲解这两种运算及其主要区别,并给出相应示例。 应用场景了解 位运算和逻辑运算的设计初衷源自计算机底层硬件和逻辑运算的需求,它们分别针对不同的处理对象和场景。以下是它们设计的初始目的简介: