codecamp

C# 枚举

C# 枚举

枚举器是值的列表上的只读,只向前的光标。

枚举器是实现以下任一接口的对象:

System.Collections.IEnumerator
System.Collections.Generic.IEnumerator<T>

foreach 语句可以遍历可枚举对象。

例子

可枚举对象实现 IEnumerable IEnumerable<T>

可枚举对象有一个名为GetEnumerator的方法,返回一个枚举器。

IEnumerator IEnumerable System.Collections 中定义。

IEnumerator< T> IEnumerable< T> System.Collections.Generic 中定义。

下面是使用foreach语句对字符进行迭代的高级方法:

foreach (char c in "www.w3cschool.cn"){
   Console.WriteLine (c);
}

这里是低层次的遍历字符的方法,而不使用foreach语句:

using (var enumerator = "www.w3cschool.cn".GetEnumerator())
while (enumerator.MoveNext()) {
    var element = enumerator.Current;
    Console.WriteLine (element);
}

集合初始化程序

您可以在一个步骤中实例化和填充可枚举对象。

例如:

using System.Collections.Generic;
...
List<int> list = new List<int> {1, 2, 3};

为了使上面的代码起作用,enumerable对象必须实现System.Collections.IEnumerable接口,并且它具有一个Add方法,该方法具有适当数量的调用参数。

C# 异常
C# 迭代器
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }