溫馨提示×

溫馨提示×

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

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

怎么在C#中使用yield關(guān)鍵字構(gòu)建一個迭代器

發(fā)布時間:2021-03-30 16:13:59 來源:億速云 閱讀:120 作者:Leah 欄目:編程語言

這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)怎么在C#中使用yield關(guān)鍵字構(gòu)建一個迭代器,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

以代碼

 public class Car
  {
    //內(nèi)部狀態(tài)數(shù)據(jù)
    public int CurentSpeed;
    public int MaxSpeed;
    public string name;
    //汽車能不能用
    private bool carIsdead;
    //類構(gòu)造函數(shù)
    public Car() { }
    public Car(string name, int currentspeed, int maxspeed = 100)
    {
      this.name = name;
      this.CurentSpeed = currentspeed;
      this.MaxSpeed = maxspeed;
    }
    //定義委托類型
    public delegate void CarEngineHandler(string msdForCar);
    //定義每個委托類型的成員變量
    private CarEngineHandler listOfhandlers;
    //向調(diào)用者添加注冊函數(shù)
    public void RegisterWithCarEngine(CarEngineHandler methodTocall)
    {
      if (listOfhandlers == null)
        listOfhandlers = methodTocall;
      else
        listOfhandlers += methodTocall;//支持多路廣播
    }
    //實現(xiàn)Accelerate()方法
    public void Accelerate(int delta)
    {
      if (carIsdead)
      {
        if (listOfhandlers != null)
        {
          listOfhandlers("sorry,this car is dead");
        }
      }
      else
      {
        CurentSpeed += delta;
        //不能超過最大速度
        if (5 == (MaxSpeed - CurentSpeed) && listOfhandlers != null)
        {
          listOfhandlers("this speed is nearly to the maxspeed");
        }
        if (CurentSpeed > MaxSpeed)
        {
          carIsdead = true;
        }
        else
          Console.WriteLine("current speed:{0}", CurentSpeed);
      }
    }
  }
  public class Garage : IEnumerable
  {
    private Car[] garage = new Car[3];
    public Garage()
    {
      garage[0] = new Car("a", 10);
      garage[1] = new Car("b", 13);
      garage[2] = new Car("c", 14);
    }
    public Enumerator GetEnumerator()
    {
      //返回數(shù)組對象的IEnumerator
      //return garage.GetEnumerator();
      //用yield關(guān)鍵字構(gòu)建迭代器方法
      foreach (Car c in garage)
      {
        //當(dāng)yield return語句執(zhí)行后,當(dāng)前位會被
        //保存下來,下一次執(zhí)行會從當(dāng)前位開始
        yield return c;
      }
    }
  }
  class Program
  {
    static void Main(string[] args)
    {
      Garage g = new Garage();
      foreach (Car c in g)
      {
        Console.WriteLine("car name:{0}", c.name);
      }
    }
  }

上述就是小編為大家分享的怎么在C#中使用yield關(guān)鍵字構(gòu)建一個迭代器了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI