标题:关于CollectionBase的成员,急!!!!!
只看楼主
xxandzbq
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2009-10-13
结帖率:100%
已结贴  问题点数:20 回复次数:1 
关于CollectionBase的成员,急!!!!!
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication53
{
    public class Animals:CollectionBase
    {
        public void Add(Animal newAnimal)
        {
            List.Add(newAnimal);
        }
        public void Remove(Animal newAnimal)
        {
            List.Remove(newAnimal);
        }
        public Animals()
        {
        }
        public Animal this[int animalIndex]
        {
            get
            {
                return (Animal)List[animalIndex];
            }
            set
            {
                List[animalIndex] = value;
            }
        }
    }
}
--------------------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication53
{
    class Program
    {
        static void Main(string[] args)
        {
            Animals animalCollection = new Animals();
            animalCollection.Add(new Cow("Jack"));
            animalCollection.Add(new Chicken("Vera"));
            foreach (Animal myAnimal in animalCollection)
            {
                myAnimal.Feed();
            }
            Console.ReadKey();
        }
    }
}
----------------------------------------------------------------------------------------------
问题是:animalCollections对象调用了类Animals中的Add方法,Add方法中的List是什么东东,如果是添加一个对象,如“Jack”的话,那么animalCollections本身就是对象,向他添加一个对象是什么意思呢?难道和ArrayList定义的对象是一样意思吗?求高手解答,在线等
搜索更多相关主题的帖子: 成员 
2009-12-17 22:10
athenalux
Rank: 11Rank: 11Rank: 11Rank: 11
来 自:河北石家庄
等 级:小飞侠
威 望:8
帖 子:975
专家分:2514
注 册:2008-11-26
得分:20 
list是arrylist的泛型版本。

QQ:81704464
2009-12-18 08:20



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-293805-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.128682 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved