C#,实现IEnumerable<string>接口报错
classEnumerableTest:System.Collections.Generic.IEnumerable<string>{privateSystem.Coll...
class EnumerableTest : System.Collections.Generic.IEnumerable<string>
{
private System.Collections.Generic.List<string> _stringList;
public List<string>.Enumerator GetEnumerator()
{
return this._stringList.GetEnumerator();
}
}
这个类是无法编译的,有人知道原因吗?求解惑
List<string>.Enumerator 是同时实现IEnumerator和IEnumerator<string>接口的,为什么会出这样的错:
错误 1 “sharpTest.EnumerableTest”不实现接口成员“System.Collections.IEnumerable.GetEnumerator()”。“sharpTest.EnumerableTest.GetEnumerator()”无法实现“System.Collections.IEnumerable.GetEnumerator()”,因为它没有匹配的返回类型“System.Collections.IEnumerator”。 E:\Project\C#\sharpTest\sharpTest\Program.cs 14 11 sharpTest
错误 2 “sharpTest.EnumerableTest”不实现接口成员“System.Collections.Generic.IEnumerable<string>.GetEnumerator()”。“sharpTest.EnumerableTest.GetEnumerator()”无法实现“System.Collections.Generic.IEnumerable<string>.GetEnumerator()”,因为它没有匹配的返回类型“System.Collections.Generic.IEnumerator<string>”。 E:\Project\C#\sharpTest\sharpTest\Program.cs 14 11 sharpTest
很基础的问题,刚弄明白:
IEnumerable<T>继承自System.Collections.IEnumerable,必须实现这两个接口
两个接口中都定义了GetEnumerator()方法,但返回类型却不完全相同,前者是System.Collections.Generic.IEnumerator<T>,后者是System.Collections.IEnumerator
由于两个方法的名称和参数完全相同,只能将其中一个方法显式实现,另一个隐式实现,如下:
class EnumerableTest : IEnumerable<string>
{
public List<string>.Enumerator GetEnumerator()
.....
public List<string>.Enumerator IEnumerable.GetEnumerator()
{
return this.GetEnumerator();
}
} 展开
{
private System.Collections.Generic.List<string> _stringList;
public List<string>.Enumerator GetEnumerator()
{
return this._stringList.GetEnumerator();
}
}
这个类是无法编译的,有人知道原因吗?求解惑
List<string>.Enumerator 是同时实现IEnumerator和IEnumerator<string>接口的,为什么会出这样的错:
错误 1 “sharpTest.EnumerableTest”不实现接口成员“System.Collections.IEnumerable.GetEnumerator()”。“sharpTest.EnumerableTest.GetEnumerator()”无法实现“System.Collections.IEnumerable.GetEnumerator()”,因为它没有匹配的返回类型“System.Collections.IEnumerator”。 E:\Project\C#\sharpTest\sharpTest\Program.cs 14 11 sharpTest
错误 2 “sharpTest.EnumerableTest”不实现接口成员“System.Collections.Generic.IEnumerable<string>.GetEnumerator()”。“sharpTest.EnumerableTest.GetEnumerator()”无法实现“System.Collections.Generic.IEnumerable<string>.GetEnumerator()”,因为它没有匹配的返回类型“System.Collections.Generic.IEnumerator<string>”。 E:\Project\C#\sharpTest\sharpTest\Program.cs 14 11 sharpTest
很基础的问题,刚弄明白:
IEnumerable<T>继承自System.Collections.IEnumerable,必须实现这两个接口
两个接口中都定义了GetEnumerator()方法,但返回类型却不完全相同,前者是System.Collections.Generic.IEnumerator<T>,后者是System.Collections.IEnumerator
由于两个方法的名称和参数完全相同,只能将其中一个方法显式实现,另一个隐式实现,如下:
class EnumerableTest : IEnumerable<string>
{
public List<string>.Enumerator GetEnumerator()
.....
public List<string>.Enumerator IEnumerable.GetEnumerator()
{
return this.GetEnumerator();
}
} 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏10(财富值+成长值)
1个回答
展开全部
接口实现时,方法的签名是不能改变的。名称,参数,返回值类型都不可以改变
public List<string>.Enumerator GetEnumerator()
{
return this._stringList.GetEnumerator();
}
这个的返回类型我记得应该是
改成public IEnumerator<string> GetEnumerator()
{
return this._stringList.GetEnumerator();
}
试试
public List<string>.Enumerator GetEnumerator()
{
return this._stringList.GetEnumerator();
}
这个的返回类型我记得应该是
改成public IEnumerator<string> GetEnumerator()
{
return this._stringList.GetEnumerator();
}
试试
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询