使用叠代器顯示公交車站點
阿新 • • 發佈:2018-12-08
定義 不為 item turn 效果 str sha info ems
實現效果:
知識運用:
通常使用yield return依次返回每個元素 使用yield break語句終止叠代
叠代器的返回值類型必須為IEnumerable或IEnumerator中的任意一種
實現代碼:
public static IList<object> items = new List<object>(); //定義一個泛型對象,用於存儲對象 public static IEnumerable<object> GetValues() { if (items != null) //如果泛型不為空 { foreach (object o in items) //遍歷其中對象 yield return o; } } private void button1_Click(object sender, EventArgs e) { foreach(object obj in GetValues()){ //遍歷泛型集合 listBox1.Items.Add(obj.ToString()); //在列表中添加顯示信息 } }
使用叠代器顯示公交車站點