c#中的Array类怎么实现IEnumerator接口
Array类没有定义IEnumerator接口中的方法为什么还能用foreach循环比如说IEnumeratori=Array.GetEnumerble();i.Move...
Array类没有定义IEnumerator接口中的方法
为什么还能用foreach循环
比如说
IEnumerator i=Array.GetEnumerble();
i.MoveNext();
本身接口是协议,Array中也没有定义MoveNext方法,怎么还能调用 展开
为什么还能用foreach循环
比如说
IEnumerator i=Array.GetEnumerble();
i.MoveNext();
本身接口是协议,Array中也没有定义MoveNext方法,怎么还能调用 展开
3个回答
展开全部
回答你的补充问题:
Array中也没有定义MoveNext方法,怎么还能调用
Array实现了GetEnumerator方法
public IEnumerator GetEnumerator()
{
int lowerBound = GetLowerBound(0);
if (Rank == 1 && lowerBound == 0)
return new SZArrayEnumerator(this);
else
return new ArrayEnumerator(this, lowerBound, Length);
}
而方法里的SZArrayEnumerator类或ArrayEnumerator类,都实现了MoveNext方法
明白吗?
btw:上面拷贝出来的代码都出自微软网站,很多net的类库,微软现在都开源了
我是安装了ReSharper,然后查看类定义时,会自动去微软下载源代码
具体代码参考微软网站:referencesource.microsoft.com
Array类定义:public abstract class Array : ICloneable, IList
IList接口定义:public interface IList : ICollection, IEnumerable
实现了Ienumerable接口,就可以使用foreach了
资料出处
1、msdn
2、在Vs.net中,右键点相应的类,转到定义,就看到了。
Array中也没有定义MoveNext方法,怎么还能调用
Array实现了GetEnumerator方法
public IEnumerator GetEnumerator()
{
int lowerBound = GetLowerBound(0);
if (Rank == 1 && lowerBound == 0)
return new SZArrayEnumerator(this);
else
return new ArrayEnumerator(this, lowerBound, Length);
}
而方法里的SZArrayEnumerator类或ArrayEnumerator类,都实现了MoveNext方法
明白吗?
btw:上面拷贝出来的代码都出自微软网站,很多net的类库,微软现在都开源了
我是安装了ReSharper,然后查看类定义时,会自动去微软下载源代码
具体代码参考微软网站:referencesource.microsoft.com
Array类定义:public abstract class Array : ICloneable, IList
IList接口定义:public interface IList : ICollection, IEnumerable
实现了Ienumerable接口,就可以使用foreach了
资料出处
1、msdn
2、在Vs.net中,右键点相应的类,转到定义,就看到了。
展开全部
隐式实现了,她还隐式实现ICollection IList接口和他们的泛型接口
这是CLR在运行时动态做的,你在代码里看不到
补充:
msdn http://msdn.microsoft.com/zh-cn/library/system.array(VS.80).aspx
补充2:
显示接口实现,显示接口实现的方法不会作为类的公共方法出现,是私有实现,你可以把类转换成接口后调用
这是CLR在运行时动态做的,你在代码里看不到
补充:
msdn http://msdn.microsoft.com/zh-cn/library/system.array(VS.80).aspx
补充2:
显示接口实现,显示接口实现的方法不会作为类的公共方法出现,是私有实现,你可以把类转换成接口后调用
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
[SerializableAttribute]
[ComVisibleAttribute(true)]
public abstract class Array : ICloneable,
IList, ICollection, IEnumerable
以上为MSDN中关于array 类定义。说明它已经实现了IEnumerator接口。
[ComVisibleAttribute(true)]
public abstract class Array : ICloneable,
IList, ICollection, IEnumerable
以上为MSDN中关于array 类定义。说明它已经实现了IEnumerator接口。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询