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

IEnumerable接口

时间:2014-07-25 11:36:32      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:ienumerable   c# ienumerable   

=================================================简单的实现IEnumerable接口

------------------------------------Person.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections;
namespace ConsoleApplication6
{
    public class Person
    {
        public string Name { get; set; }
    }
}

------------------------------------PerAll.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections;
namespace ConsoleApplication6
{
    public class PerAll:IEnumerable
    {
        Person[] p = new Person[3];//实例化长度为三个的数组
        public PerAll()//构造函数初始化数组
        {
            p[0] = new Person { Name = "张三" };
            p[1] = new Person { Name = "李四" };
            p[2] = new Person { Name = "王五" };
        }
        public IEnumerator GetEnumerator()//迭代器
        {
            return p.GetEnumerator();//直接调用数组自带的的GetEnumerator。(简单委托请求到System.Array)
        }
    }
}

------------------------------------主程序

            PerAll p = new PerAll();//实例化对象
            //-------------------第一种方式遍历
            foreach (Person  item in p)
            {
                Console.WriteLine(item.Name);
            }
            //-------------------第二中方式遍历
            IEnumerator ie = p.GetEnumerator();
            while (ie.MoveNext())
            {
                Console.WriteLine((ie.Current as Person).Name);
            } 
            
            
            
            //普通数组遍历
            string[] str = new string[3] { "张辽", "张合", "张飞" };
            IEnumerator strie = str.GetEnumerator();
            while (strie.MoveNext())
            {
                Console.WriteLine(strie.Current as string);
            }

 

本文出自 “程序猿的家” 博客,请务必保留此出处http://962410314.blog.51cto.com/7563109/1529889

IEnumerable接口,布布扣,bubuko.com

IEnumerable接口

标签:ienumerable   c# ienumerable   

原文地址:http://962410314.blog.51cto.com/7563109/1529889

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