using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;namespace 泛型{ class Farm<T>:IEnumerable<T> where T:Animol { private List<T> animols = new List<T>(); public List<T> Animol { get { return animols; } } public IEnumerator<T> GetEnumerator() { return animols.GetEnumerator(); } IEnumerator IEnumerable.GetEnumerator() { return animols.GetEnumerator(); } //求红色标注的几句的意思 和 作用 越详细越好 小弟 越是感激。。。。
}}
- 4 回答
- 0 关注
- 427 浏览
添加回答
举报
0/150
提交
取消