C#泛型集合类型实现添加和遍历
在"C#中List<T>是怎么存放元素的"中,分析了List<T>的源码,了解了List<T>是如何存放元素的。这次,就自定义一个泛型集合类型,可实现添加元素,并支持遍历
该泛型集合类型一定需要一个添加元素的方法,在添加元素的时候需要考虑:当添加的元素超过当前数组的容量,就让数组扩容;为了支持循环遍历,该泛型集合类型必须提供一个迭代器(实现IEnumerator接口)。
public class MyList<T> { T[] items = new T[5]; private int count; public void Add(T item) { if(count == items.Length) Array.Resize(ref items, items.Length * 2); items[count++] = item; } public IEnumerator<T> GetEnumerator() { return new MyEnumeraor(this); } class MyEnumeraor : IEnumerator<T> { private int index = -1; private MyList<T> _myList; public MyEnumeraor(MyList<T> myList) { _myList = myList; } public T Current { get { if (index < 0 || index >= _myList.count) { return default(T); } return _myList.items[index]; } } public void Dispose() { } object System.Collections.IEnumerator.Current { get { return Current; } } public bool MoveNext() { return ++index < _myList.count; } public void Reset() { index = -1; } } }
- 泛型集合类型维护着一个T类型的泛型数组
- 私有字段count是用来计数的,每添加一个元素计数加1
- 添加方法考虑了当count计数等于当前元素的长度,就让数组扩容为当前的2倍
- 迭代器实现了IEnumerator<T>接口
客户端调用。
class Program { static void Main(string[] args) { MyList<int> list = new MyList<int>(); list.Add(1); list.Add(2); foreach (int item in list) { Console.WriteLine(item); } Console.ReadKey(); } }
另外,IEnumerable和IEnumerator的区别是什么呢?
其实,真正执行迭代的是IEnumerator迭代器。IEnumerable接口就提供了一个方法,就是返回IEnumerator迭代器。
public interface IEnumerable { IEnumerator GetEnumerator(); }
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对脚本之家的支持。如果你想了解更多相关内容请查看下面相关链接
相关文章
C# IEnumerable和IEnumerator接口浅析
本文主要介绍了C#中IEnumerable和IEnumerator接口的相关知识,具有很好的参考价值,下面跟着小编一起来看下吧2017-02-02C#中Abstract 、Virtual和Override的使用及区别
C#中virtual,abstract,override用于方法重载,子类覆盖了父类的相同方法,父类中的实现不可能再被外面调用。本文给大家重点介绍C#中Abstract 、Virtual和Override的使用及区别,需要的朋友参考下吧2021-06-06C# 使用EntityFramework CodeFirst 创建PostgreSQL数据库的详细过程
这篇文章主要介绍了C#使用EntityFramework CodeFirst创建PostgreSQL数据库的过程,本文通过图文并茂的形式给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2023-07-07Win10 系统下VisualStudio2019 配置点云库 PCL1.11.0的图文教程
这篇文章主要介绍了Win10 系统下VisualStudio2019 配置点云库 PCL1.11.0的图文教程,本文通过图文并茂的形式给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2020-07-07C# Winform消息通知之系统本地通知local toast notification
这篇文章主要为大家介绍了C# Winform消息通知之系统本地通知local toast notification使用详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2022-08-08
最新评论