这段程序有个错误怎么改

.Net技术 码拜 8年前 (2016-05-23) 737次浏览
这段程序有个小错误 怎么改  它提示:当前上下文中不存在Current. 最好改动的幅度不要太大,“原汁原味”的最好
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections;
using System.Runtime.InteropServices;
// 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<Person>
{
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();
}
IEnumerator<Person> IEnumerable<Person>.GetEnumerator()
{
return GetEnumerator();
}
public PeopleEnum GetEnumerator()
{
return new PeopleEnum(_people);
}
}
// When you implement IEnumerable, you must also implement IEnumerator.
public class PeopleEnum : IEnumerator<Person>
{
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 (Person)Current;
}
}
Person IEnumerator<Person>.Current
{
get
{
try
{
return _people[position];
}
catch (IndexOutOfRangeException)
{
throw new InvalidOperationException();
}
}
}
public void Dispose()
{ }
}
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 (IEnumerable<Person>)peopleList)
Console.WriteLine(p.firstName + ” ” + p.lastName);
}
}
解决方案

40

下面的应该写作
return (this as IEnumerator<Person>).Current;

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明这段程序有个错误怎么改
喜欢 (0)
[1034331897@qq.com]
分享 (0)