关于枚举器IEnumerator<T>接口实现foreach的迭代

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            Genericlist<int> mylist = new Genericlist<int>();
            for (int x = 0; x < 10; x++)
            {
                mylist.addhead(x);
            }
            foreach (int i in mylist)
            {
                Console.WriteLine(i);
            }
        }
    }

    public class Genericlist<T>
    {
        private class node
        {
            public node(T t)//声明的node类的构造函数,带一个T参数
            {
                data = t;
                next = null;
            }
            private node next;
            public node Next
            {
                get { return next; }
                set { next = value; }
            }
            private T data;
            public T Data
            {
                get { return data; }
                set { data = value; }
            }
        }
        private node head;//创建位于Genericlist类的字段,类型为node的head
        public Genericlist()//Genericlist类的构造函数
        {
            head = null;
        }

        public void addhead(T t)//执行将新node添置于旧head前而形成新head的操作
        {
            node n = new node(t);
            n.Next = head;
            head = n;
        }

        public IEnumerator<T> GetEnumerator()//这里实现IEnumerator枚举器接口的方法GetEnumerator,所以这个方法名不能改变
        {
            node current = head;
            while (current != null)
            {
                yield return current.Data;
                current = current.Next;
            }
        }
    }
}

由于要实现

 foreach (int i in mylist)

  这样的迭代,会调用到接口中的GetEnumerator()方法,所以在Genericlist类中只是实现这个方法,因此实现时方法名不可改动~

转载于:https://www.cnblogs.com/madkex/archive/2012/05/03/2481474.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值