再来看一看

.Net技术 码拜 8年前 (2016-05-25) 946次浏览
那么这段程序   你们看清楚了  本人标红的地方是不是程序运行的时候没有用到?一直用的是标蓝的代码?标红的地方原因是它是显式属性 是吗?Current属性的返回值无所谓?你们把整个程序看完
using System;
using System.Collections;
// Simple business object.
public class Person
{
public Person(string fName, string lName)
{
this.firstName = fName;
this.lastName = lName;
}
public string firstName;
public string lastName;
}
// Collection of Person objects. This class
// implements IEnumerable so that it can be used
// with ForEach syntax.
public class People : IEnumerable
{
private Person[] _people;
public People(Person[] pArray)
{
_people = new Person[pArray.Length];
for (int i = 0; i < pArray.Length; i++)
{
_people[i] = pArray[i];
}
}
// Implementation for the GetEnumerator method.
IEnumerator IEnumerable.GetEnumerator()
{
return (IEnumerator) GetEnumerator();
}

public PeopleEnum GetEnumerator()
{
return new PeopleEnum(_people);
}

}
// When you implement IEnumerable, you must also implement IEnumerator.
public class PeopleEnum : IEnumerator
{
public Person[] _people;
// Enumerators are positioned before the first element
// until the first MoveNext() call.
int position = -1;
public PeopleEnum(Person[] list)
{
_people = list;
}
public bool MoveNext()
{
position++;
return (position < _people.Length);
}
public void Reset()
{
position = -1;
}
object IEnumerator.Current
{
get
{
return Current;
}
}

public Person Current
{
get
{
try
{
return _people[position];
}
catch (IndexOutOfRangeException)
{
throw new InvalidOperationException();
}
}
}

}
class App
{
static void Main()
{
Person[] peopleArray = new Person[3]
{
new Person(“John”, “Smith”),
new Person(“Jim”, “Johnson”),
new Person(“Sue”, “Rabon”),
};
People peopleList = new People(peopleArray);
foreach (Person p in peopleList)
Console.WriteLine(p.firstName + ” ” + p.lastName);
}
}
解决方案

40

这个程序确实没用到
然后假如确定其他地方使用的时候不会用到,那当然可以随便写。
之所以用的是蓝色根本不是原因是什么显式的原因
虽然书上甚至微软的网站上都提到in后面那个变量需要实现IEnumerable或IEnumerable<T>
而事实上,foreach根本就不在乎
只要in后面的变量有一个GetEnumerator();方法,并且返回值包含了Current和MoveNext,foreach就能运行

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明再来看一看
喜欢 (0)
[1034331897@qq.com]
分享 (0)