C#中的枚举器
更新记录
本文迁移自Panda666原博客,原发布时间:2021年6月28日。
一、先从可枚举类型讲起
1.1 什么是可枚举类型?

可枚举类型,可以简单的理解为:
有一个类,类中有挺多的数据,用一种统一的方式把他们列举出来。
在.NET中满足以下任意条件的都是可枚举类型:
Implements System.Collections.IEnumerable
Implements System.Collections.Generic.IEnumerable
Has a public parameterless method named GetEnumerator that returns an enumerator
这三条看起来非常的简单。第一条实现了IEnumerable接口就行了。第二条实现了IEnumerable接口就行了。第三条就更简洁了,实现了GetEnumerator方法就行了。所以可以发现,可枚举类型实现起来非常的方便。
1.2 那么问题来了,为什么需要可枚举类型?
上面不是说了吗,用一种统一的方式把数据列举出来。
那么问题来了,为什么需要用统一的方式取出数据?
因为方便取出数据,一百个类有一百个取出数据的方式,维护起来就很难受了。
所以统一数据的取出方式,是非常有必要的。
1.3 具体实现可枚举类型
说了这么多,是什么,为什么,来看看怎么用。我们先来看看,上面说到的2个接口。
System.Collections.IEnumerable接口的定义
namespace System.Collections
{
public interface IEnumerable
{
IEnumerator GetEnumerator();
}
}
System.Collections.Generic.IEnumerable接口 的定义
public interface IEnumerable<out T> : IEnumerable
{
IEnumerator<T> GetEnumerator();
}
注意点:
可以看到2个接口大同小异,都有GetEnumerator方法,但要注意的是2个方法的返回类型是不同的。
GetEnumerator从字面意思也能看出来,表示获得Enumerator。
那么什么是Enumerator?Enumerator表示枚举器。
我们的数据统一数据的取出方式全部都靠枚举器帮我们代劳,而不是直接定义在本类中,当然你也可以这样做,但不建议。接下来现在我们来定义几个可枚举类型。
继承自IEnumerable的可枚举类型
public class PandaClass1 : IEnumerable
{
public IEnumerator GetEnumerator()
{
//内部没有具体实现,所以先抛出异常
throw new NotImplementedException();
}
}
继承自IEnumerable的可枚举类型
public class PandaClass2 : IEnumerable<int>
{
public IEnumerator<int> GetEnumerator()
{
//内部没有具体实现,所以先抛出异常
throw new NotImplementedException();
}
IEnumerator IEnumerable.GetEnumerator()
{
//内部没有具体实现,所以先抛出异常
throw new NotImplementedException();
}
}
直接实现GetEnumerator方法的可枚举类型
public class PandaClass3
{
public IEnumerator GetEnumerator()
{
//内部没有具体实现,所以先抛出异常
throw new NotImplementedException();
}
}
直接实现GetEnumerator方法的可枚举类型
public class PandaClass4
{
public IEnumerator<int> GetEnumerator()
{
//内部没有具体实现,所以先抛出异常
throw new NotImplementedException();
}
}
到这里我们已经搞定可枚举类型了,怎么进行枚举?
二、有趣的枚举器(Enumerator)
2.1 那么问题来了,什么是枚举器。
Enumerator在英文中有列举出人或物的意思。所以是列举器的意思?不急,我们来对比看看程序中什么是枚举器。
在.NET中满足以下任意条件的都是枚举器:
1、Implements System.Collections.IEnumerator
2、Implements System.Collections.Generic.IEnumerator
3、Has a public parameterless method named MoveNext and property called Current
第三条中的实现MoveNext方法和Current属性倒是挺好理解的,只要实现了这2个成员就叫枚举器。
比如下面这类就叫枚举器
public class Enumerator
{
public IteratorVariableType Current { get {...} }
public bool MoveNext() {...}
}
那么第一二条中的接口是什么,不慌,我们先来看看这2个接口的定义。
IEnumerator接口的定义
namespace System.Collections
{
public interface IEnumerator
{
object Current { get; }
bool MoveNext();
void Reset();
}
}
IEnumerator接口的定义
namespace System.Collections.Generic
{
public interface IEnumerator<out T> : IEnumerator, IDisposable
{
T Current { get; }
}
}
需要注意的点:
IEnumerator接口返回的是object类型。
从接口的定义我们可以发现IEnumerator继承自IEnumerator。
所以IEnumerator是同样包含的有MoveNext()和Reset()方法的。
MoveNext()方法表示移动到下一个元素。
Reset()方法表示重置枚举器。
Current属性用于获得当前的元素值。
2.2 实现枚举器
直接继承IEnumerator接口实现枚举器
public class PandaEnumerator1 : IEnumerator
{
//内部没有具体实现,所以先抛出异常
public object Current => throw new NotImplementedException();
public bool MoveNext()
{
//内部没有具体实现,所以先抛出异常
throw new NotImplementedException();
}
public void Reset()
{
//内部没有具体实现,所以先抛出异常
throw new NotImplementedException();
}
}
直接继承IEnumerator接口实现枚举器
public class PandaEnumerator2 : IEnumerator<int>
{
//内部没有具体实现,所以先抛出异常
public int Current => throw new NotImplementedException();
//内部没有具体实现,所以先抛出异常
object IEnumerator.Current => throw new NotImplementedException();
//用于释放枚举器使用的资源
public void Dispose()
{
throw new NotImplementedException();
}
public bool MoveNext()
{
//内部没有具体实现,所以先抛出异常
throw new NotImplementedException();
}
public void Reset()
{
//内部没有具体实现,所以先抛出异常
throw new NotImplementedException();
}
}
直接实现要求的方法实现枚举器
public class PandaEnumerator3
{
//内部没有具体实现,所以先抛出异常
public object Current => throw new NotImplementedException();
public bool MoveNext()
{
//内部没有具体实现,所以先抛出异常
throw new NotImplementedException();
}
public void Reset()
{
//内部没有具体实现,所以先抛出异常
throw new NotImplementedException();
}
}
三、组合枚举类型和枚举器
那么问题来了,枚举类型和枚举器都搞定了。怎么把他们组合起来?怎么用来?
我们这里用一个实例来进行演示。我们先定义一个学生类来表示要枚举的数据。
/// <summary>
/// 学生数据
/// </summary>
public class Student
{
/// <summary>
/// 编号
/// </summary>
public string Id { get; set; }
/// <summary>
/// 姓名
/// </summary>
public string Name { get; set; }
/// <summary>
/// 年龄
/// </summary>
public int Age { get; set; }
}
然后我们定义枚举器
/// <summary>
/// 枚举器
/// </summary>
public class StudentIEnumerator : IEnumerator<Student>
{
/// <summary>
/// 用于遍历的学生信息
/// </summary>
private List<Student> InnerStudents { get; set; }
/// <summary>
/// 当前的位置
/// </summary>
private int CurrentPosition { get; set; }
public StudentIEnumerator(List<Student> students)
{
this.InnerStudents = students;
this.CurrentPosition = -1;
}
//获得当前的元素
public Student Current => this.InnerStudents[this.CurrentPosition];
//如果无需兼容老代码,可以无需修改
object IEnumerator.Current => throw new NotImplementedException();
public void Dispose()
{
}
public bool MoveNext()
{
if(this.CurrentPosition < this.InnerStudents.Count-1)
{
++this.CurrentPosition;
return true;
}
return false;
}
public void Reset()
{
this.CurrentPosition = -1;
}
}
最后定义可枚举类型
/// <summary>
/// 可枚举类型
/// </summary>
public class StudentCollecion : IEnumerable<Student>
{
/// <summary>
/// 学生数据
/// </summary>
public List<Student> Students { get; set; }
public StudentCollecion()
{
//初始化List
this.Students = new List<Student>();
//虚构用于测试的学生信息
this.Students.Add(new Student() {
Id = "666",
Name = "Panda",
Age = 18
});
this.Students.Add(new Student()
{
Id = "888",
Name = "Donkey",
Age = 18
});
this.Students.Add(new Student()
{
Id = "999",
Name = "Dog",
Age = 18
});
this.Students.Add(new Student()
{
Id = "777",
Name = "Pig",
Age = 18
});
this.Students.Add(new Student()
{
Id = "333",
Name = "Monkey",
Age = 18
});
}
/// <summary>
/// 获得枚举器
/// 返回我们自定义的配套枚举器
/// </summary>
/// <returns></returns>
public IEnumerator<Student> GetEnumerator()
{
return new StudentIEnumerator(this.Students);
}
//如果无需兼容老代码可以不用修改
IEnumerator IEnumerable.GetEnumerator()
{
throw new NotImplementedException();
}
}
四、使用可枚举类型
那么问题来了,怎么使用可枚举类型?
方式一:使用foreach。这是最常用的方式。
StudentCollecion students = new StudentCollecion();
foreach (var student in students)
{
Console.WriteLine(student.Id);
}
注意:foreach只是方式二的语法糖。如果枚举器实现了IDisposable接口,foreach会自动调用dispose方法。
方式二:直接使用迭代器
StudentCollecion students = new StudentCollecion();
//获得实例的枚举器
IEnumerator<Student> enumerator = students.GetEnumerator();
//手动操作
while (enumerator.MoveNext())
{
//获得元素值
Console.WriteLine(enumerator.Current.Name);
}
//重置一下枚举器
enumerator.Reset();
五、总结
实例完整源代码
using System;
using System.Collections;
using System.Collections.Generic;
namespace Panda666comTest
{
/// <summary>
/// 枚举器
/// </summary>
public class StudentIEnumerator : IEnumerator<Student>
{
/// <summary>
/// 用于遍历的学生信息
/// </summary>
private List<Student> InnerStudents { get; set; }
/// <summary>
/// 当前的位置
/// </summary>
private int CurrentPosition { get; set; }
public StudentIEnumerator(List<Student> students)
{
this.InnerStudents = students;
this.CurrentPosition = -1;
}
//获得当前的元素
public Student Current => this.InnerStudents[this.CurrentPosition];
//如果无需兼容老代码,可以无需修改
object IEnumerator.Current => throw new NotImplementedException();
public void Dispose()
{
}
public bool MoveNext()
{
if (this.CurrentPosition < this.InnerStudents.Count - 1)
{
++this.CurrentPosition;
return true;
}
return false;
}
public void Reset()
{
this.CurrentPosition = -1;
}
}
/// <summary>
/// 学生数据
/// </summary>
public class Student
{
/// <summary>
/// 编号
/// </summary>
public string Id { get; set; }
/// <summary>
/// 姓名
/// </summary>
public string Name { get; set; }
/// <summary>
/// 年龄
/// </summary>
public int Age { get; set; }
}
/// <summary>
/// 可枚举类型
/// </summary>
public class StudentCollecion : IEnumerable<Student>
{
/// <summary>
/// 学生数据
/// </summary>
public List<Student> Students { get; set; }
public StudentCollecion()
{
//初始化List
this.Students = new List<Student>();
//虚构用于测试的学生信息
this.Students.Add(new Student()
{
Id = "666",
Name = "Panda",
Age = 18
});
this.Students.Add(new Student()
{
Id = "888",
Name = "Donkey",
Age = 18
});
this.Students.Add(new Student()
{
Id = "999",
Name = "Dog",
Age = 18
});
this.Students.Add(new Student()
{
Id = "777",
Name = "Pig",
Age = 18
});
this.Students.Add(new Student()
{
Id = "333",
Name = "Monkey",
Age = 18
});
}
/// <summary>
/// 获得枚举器
/// 返回我们自定义的配套枚举器
/// </summary>
/// <returns></returns>
public IEnumerator<Student> GetEnumerator()
{
return new StudentIEnumerator(this.Students);
}
//如果无需兼容老代码可以不用修改
IEnumerator IEnumerable.GetEnumerator()
{
throw new NotImplementedException();
}
}
class Program
{
static void Main(string[] args)
{
//实例化可枚举类型
StudentCollecion students = new StudentCollecion();
//方式一:使用foreach来遍历可枚举类型
foreach (var student in students)
{
Console.WriteLine(student.Id);
}
//方式二:使用手动调用枚举器
//获得实例的枚举器
IEnumerator<Student> enumerator = students.GetEnumerator();
//手动操作
while (enumerator.MoveNext())
{
//获得元素值
Console.WriteLine(enumerator.Current.Name);
}
//重置一下枚举器
enumerator.Reset();
enumerator.Dispose();
//wait
Console.WriteLine("Success");
Console.ReadKey();
}
}
}
C#中的枚举器的更多相关文章
- ruby中迭代器枚举器的理解
参考<ruby编程语言>5.3迭代器和可枚举对象 迭代器一个迭代器是一个方法,这个方法里面有yield语句,这个方法里的yield语句,与传递给这个方法的块进行数据传输 yield将数据传 ...
- C#中的枚举器(转)
术语表 Iterator:枚举器(迭代器) 如果你正在创建一个表现和行为都类似于集合的类,允许类的用户使用foreach语句对集合中的成员进行枚举将会是很方便的.这在C# 2.0中比 C# 1.1更容 ...
- C#图解教程 第十八章 枚举器和迭代器
枚举器和迭代器 枚举器和可枚举类型 foreach语句 IEnumerator接口 使用IEnumerable和IEnumerator的示例 泛型枚举接口迭代器 迭代器块使用迭代器来创建枚举器使用迭代 ...
- JAVA中的数据结构——集合类(序):枚举器、拷贝、集合类的排序
枚举器与数据操作 1)枚举器为我们提供了访问集合的方法,而且解决了访问对象的“数据类型不确定”的难题.这是面向对象“多态”思想的应用.其实是通过抽象不同集合对象的共同代码,将相同的功能代码封装到了枚举 ...
- C#中的foreach语句与枚举器接口(IEnumerator)及其泛型 相关问题
这个问题从<C#高级编程>数组一节中的foreach语句(6.7.2)发现的. 因为示例代码与之前的章节连贯,所以我修改了一下,把自定义类型改为了int int[] bs = { 2, 3 ...
- C#2.0中使用yield关键字简化枚举器的实现
我们知道要使用foreach语句从客户端代码中调用迭代器,必需实现IEnumerable接口来公开枚举器,IEnumerable是用来公开枚举器的,它并不实现枚举器,要实现枚举器必需实现IEnumer ...
- Python 中的枚举类型~转
Python 中的枚举类型 摘要: 枚举类型可以看作是一种标签或是一系列常量的集合,通常用于表示某些特定的有限集合,例如星期.月份.状态等. 枚举类型可以看作是一种标签或是一系列常量的集合,通常用于表 ...
- for..in遍历,枚举器
#pragma mark ------------for循环遍历集合中的元素------ //创建一个数组,包含5个字符串对象,倒序取出数组中的所有元素,并存储到另一可变数组中 NSArray *ar ...
- ruby迭代器枚举器
迭代器一个迭代器是一个方法,这个方法里面有yield语句,使用了yield的方法叫做迭代器,迭代器并非一定要迭代,与传递给这个方法的块进行数据传输 yield将数据传给代码快,代码块再把数据传输给yi ...
随机推荐
- 高精度加法(C++实现)
高精度加法 简介 用于计算含有超过一般变量存放不下的非负整数 高精度加法这个过程是模拟的小学竖式加法计算 步骤 以下有顺序之分 数组清零 输入 获取长度 逆置 字符型数字转成对应的整型数字 计算并输出 ...
- 基于kubernetes的分布式限流
做为一个数据上报系统,随着接入量越来越大,由于 API 接口无法控制调用方的行为,因此当遇到瞬时请求量激增时,会导致接口占用过多服务器资源,使得其他请求响应速度降低或是超时,更有甚者可能导致服务器宕机 ...
- MySQL入门学习day3随笔3
JDBC 数据库驱动 我们的程序会通过数据库驱动和数据库打交道 JDBC Sun公司简化开发人员的操作,提供的规范 第一个JDBC项目 创建一个Java项目 导入jar包 编写测试代码 1 creat ...
- 2021.12.06 P2501 [HAOI2006]数字序列(动态规划+LIS)
2021.12.06 P2501 [HAOI2006]数字序列(动态规划+LIS) https://www.luogu.com.cn/problem/P2501 题意: 现在我们有一个长度为 n 的整 ...
- 深度剖析text-align家族
大家好,我是半夏,一个刚刚开始写文的沙雕程序员.如果喜欢我的文章,可以关注 点赞 加我微信:frontendpicker,一起学习交流前端,成为更优秀的工程师-关注公众号:搞前端的半夏,了解更多前端知 ...
- 数据结构篇(3)ts 实现双向链表
如今终于到了双向链表了,此前在Node结构中的prev指针终于派上了用场.由于双向链表多了一个前向指针,所以有些操作和单向链表比较起来反而更加的简单. class DbList extends Cir ...
- FreeRTOS --(9)任务管理之启动调度器
转载自 https://blog.csdn.net/zhoutaopower/article/details/107057528 在使用 FreeRTOS 的时候,一般的,先创建若干任务,但此刻任务并 ...
- 关于Mysql索引的数据结构
索引的数据结构 1.为什么使用索引 概念: 索引是存储索引用于快速找到数据记录的一种数据结构,就好比一本书的目录部分,通过目录中对应的文章的页码,便可以快速定位到需要的文章,Mysql 中也是一样的道 ...
- UDP协议、操作系统、同步与异步、阻塞与非阻塞
UDP协议 # 客户端 import socket server = socket.socket(type=socket.SOCK_DGRAM) server.bind(('127.0.0.1', 8 ...
- if判断+while循环
1.常量 纯大写字母命名常量名,如:AGE_OF_OLDBOY=18 常量的值是可以改变的,如:AGE_OF_OLDBOY=19 2.基本运算符 (1).算术运算 +.-.*./ ...