91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#中foreach與yield的示例分析

發布時間:2021-03-06 13:39:11 來源:億速云 閱讀:167 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關C#中foreach與yield的示例分析,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

1. foreach

C#編譯器會把foreach語句轉換為IEnumerable接口的方法和屬性。

foreach (Person p in persons)
 {
     Console.WriteLine(p);
 }

foreach語句會解析為下面的代碼段。

調用GetEnumerator()方法,獲得數組的一個枚舉

在while循環中,只要MoveNext()返回true,就一直循環下去

用Current屬性訪問數組中的元素

IEnumerator enumerator = persons. GetEnumerator(); while (enumerator.MoveNext())
 {
    Person p = (Person) enumerator.Current;
    Console.WriteLine(p);
}

2. yield語句

yield語句的兩種形式:

yield return <expression>;yield break;

使用一個yield return語句返回集合的一個元素

包含yield語句的方法或屬性是迭代器。迭代器必須滿足以下要求

a. 返回類型必須是IEnumerable、IEnumerable<T>、IEnumerator或 IEnumerator<T>。

b. 它不能有任何ref或out參數

yield return語句不能位于try-catch快。yield return語句可以位于try-finally的try塊

try
              {                  // ERROR: Cannot yield a value in the boday of a try block with a catch clause
                 yield return "test";
              }             catch
             { } 
              try
             {                 // 
                 yield return "test again";
             }             finally
             { } 
             try
             { }             finally
             { 
                 // ERROR: Cannot yield in the body of a finally clause
                yield return ""; 
             }

yield break語句可以位于try塊或catch塊,但是不能位于finally塊

下面的例子是用yield return語句實現一個簡單集合的代碼,以及用foreach語句迭代集合

using System;using System.Collections.Generic;namespace ConsoleApplication6
{    class Program
    {        static void Main(string[] args)
        {
            HelloCollection helloCollection = new HelloCollection();            foreach (string s in helloCollection)
            {
                Console.WriteLine(s);
                Console.ReadLine();
            }
        }
    }    public class HelloCollection
    {        
        public IEnumerator<String> GetEnumerator()
        {            // yield return語句返回集合的一個元素,并移動到下一個元素上;yield break可以停止迭代
            yield return "Hello";            yield return "World";
        }
    }
}

使用yield return語句實現以不同方式迭代集合的類:

using System;using System.Collections.Generic;namespace ConsoleApplication8
{    class Program
    {        static void Main(string[] args)
        {
            MusicTitles titles = new MusicTitles();            foreach (string title in titles)
            {
                Console.WriteLine(title);
            }
            Console.WriteLine();            foreach (string title in titles.Reverse())
            {
                Console.WriteLine(title);
            }
            Console.WriteLine();            foreach (string title in titles.Subset(2, 2))
            {
                Console.WriteLine(title);
                Console.ReadLine();
            }
        }
    }    public class MusicTitles
    {        string[] names = { "a", "b", "c", "d" };        public IEnumerator<string> GetEnumerator()
        {            for (int i = 0; i < 4; i++)
            {                yield return names[i];
            }
        }        public IEnumerable<string> Reverse()
        {            for (int i = 3; i >= 0; i--)
            {                yield return names[i];
            }
        }        public IEnumerable<string> Subset(int index, int length)
        {            for (int i = index; i < index + length; i++)
            {                yield return names[i];
            }
        }
    }
}

C#中foreach與yield的示例分析

以上就是C#中foreach與yield的實例詳解的詳細內容,更多請關注億速云其它相關文章!

關于“C#中foreach與yield的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阿合奇县| 巩义市| 剑川县| 南安市| 宜良县| 武汉市| 呼和浩特市| 登封市| 温泉县| 兰溪市| 海口市| 华阴市| 甘孜| 阜南县| 清镇市| 通州市| 海丰县| 南涧| 常州市| 朝阳市| 濮阳县| 遂平县| 夏津县| 余干县| 永修县| 锦州市| 河曲县| 嘉善县| 视频| 万宁市| 石狮市| 临西县| 三江| 阳西县| 奈曼旗| 罗平县| 普兰店市| 酒泉市| 沈阳市| 遵义市| 彭水|