网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

IEnumerable接口与IEnumerator接口

通过一个例子来看

创新互联建站专注于企业成都全网营销、网站重做改版、松原网站定制设计、自适应品牌网站建设、HTML5商城网站建设、集团公司官网建设、外贸营销网站建设、高端网站制作、响应式网页设计等建站业务,价格优惠性价比高,为松原等各大城市提供网站开发制作服务。

-------------------------------------------------------Student.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections;
namespace ConsoleApplication6
{
    public class Student:IEnumerable
    {
        //数组
        public string[] s;
        //索引器
        public int i;
        public Student(string[] str)//构造函数,初始化数组
        {
            s = str;
        }
        public IEnumerator GetEnumerator()//迭代器
        {
            return s.GetEnumerator();
        }
    }
}

-------------------------------------------------------StiAll.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections;
namespace ConsoleApplication6
{
    public class StiAll:IEnumerator
    {
        //student对象
        Student s;
        //游标
        int i = -1;
        public StiAll(Student ss)//构造函数,初始化student对象
        {
            this.s = ss;
        }
 
        public object Current//获取当前的项(只读属性)
        {
            get { return s.s[i]; }
        }
        public bool MoveNext()//将游标的位置向前移动
        {
            if (i

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

 Student s = new Student(new string[] { "吕蒙", "周泰", "黄盖" });//实例化Student对象
            //第一种方式遍历
            foreach (var item in s)
            {
                Console.WriteLine(item);//输出吕蒙,周泰,黄盖
            }
            //第二种方式遍历
            StiAll sa = new StiAll(s);
            while (sa.MoveNext())
            {
                Console.WriteLine(sa.Current);//输出吕蒙,周泰,黄盖
            }
            Console.ReadKey();

当前标题:IEnumerable接口与IEnumerator接口
URL地址:http://bjjierui.cn/article/pgspip.html

其他资讯