A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 胥文 中级黑马   /  2013-1-29 21:07  /  923 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 张向辉 于 2013-1-31 21:41 编辑

枚举和迭代有什么相同和不通之处
最好举例说明

3 个回复

倒序浏览
枚举相当于一个类,里面可以定义这个类的实例对象。
迭代你说的应该是集合Vector吧。
回复 使用道具 举报
这两个东西貌似凑不到一起去吧
回复 使用道具 举报
using System;
using System.Collections.Generic;
using System.Text;
using System.Collections.Specialized; //专用集合的命名空间
using System.Collections;

namespace 栈与队列
{
    class Program
    {
        static void Main(string[] args)
        {
            Zoo z = new Zoo();
            z.Add("Cat");
            z.Add("Puma");

            //使用枚举器
            foreach (string str in z)
            {
                Console.WriteLine(str);
            }
                           

        }
    }

    //定义类
    class Zoo:IEnumerable
    {
        private StringCollection animals = new StringCollection();

        public void Add(string animal)
        {
            animals.Add(animal);
        }

        //定义枚举器(能通过对象名与索引来调用成员)
        public string this[int index]
        {
            get
            {
                return animals[index];
            }
        }

        //迭代器的定义
        public IEnumerator GetEnumerator()
        {
            //向外界的foreach语句提供元素
            for (int i = 0; i < animals.Count; i++)
            {
               yield  return animals[i];
            }
        }
    }
}



回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马