【c#教程】C# 索引器(Indexer)

來源:互聯網
上載者:User

C# 索引器(Indexer)

索引器(Indexer) 允許一個對象可以像數組一樣被索引。當您為類定義一個索引器時,該類的行為就會像一個 虛擬數組(virtual array) 一樣。您可以使用數組訪問運算子([ ])來訪問該類的執行個體。

文法

一維索引器的文法如下:

element-type this[int index] {   // get 訪問器   get    {      // 返回 index 指定的值   }   // set 訪問器   set    {      // 設定 index 指定的值    }}

索引器(Indexer)的用途

索引器的行為的聲明在某種程度上類似於屬性(property)。就像屬性(property),您可使用 get 和 set 訪問器來定義索引器。但是,屬性返回或設定一個特定的資料成員,而索引器返回或設定對象執行個體的一個特定值。換句話說,它把執行個體資料分為更小的部分,並索引每個部分,擷取或設定每個部分。

定義一個屬性(property)包括提供屬性名稱。索引器定義的時候不帶有名稱,但帶有 this 關鍵字,它指向對象執行個體。下面的執行個體示範了這個概念:

using System;namespace IndexerApplication{   class IndexedNames   {      private string[] namelist = new string[size];      static public int size = 10;      public IndexedNames()      {         for (int i = 0; i < size; i++)         namelist[i] = "N. A.";      }      public string this[int index]      {         get         {            string tmp;            if( index >= 0 && index <= size-1 )            {               tmp = namelist[index];            }            else            {               tmp = "";            }            return ( tmp );         }         set         {            if( index >= 0 && index <= size-1 )            {               namelist[index] = value;            }         }      }      static void Main(string[] args)      {         IndexedNames names = new IndexedNames();         names[0] = "Zara";         names[1] = "Riz";         names[2] = "Nuha";         names[3] = "Asif";         names[4] = "Davinder";         names[5] = "Sunil";         names[6] = "Rubic";         for ( int i = 0; i < IndexedNames.size; i++ )         {            Console.WriteLine(names[i]);         }         Console.ReadKey();      }   }}

當上面的代碼被編譯和執行時,它會產生下列結果:

ZaraRizNuhaAsifDavinderSunilRubicN. A.N. A.N. A.

重載索引器(Indexer)

索引器(Indexer)可被重載。索引器聲明的時候也可帶有多個參數,且每個參數可以是不同的類型。沒有必要讓索引器必須是整型的。C# 允許索引器可以是其他類型,例如,字串類型。

下面的執行個體示範了重載索引器:

using System;namespace IndexerApplication{   class IndexedNames   {      private string[] namelist = new string[size];      static public int size = 10;      public IndexedNames()      {         for (int i = 0; i < size; i++)         {          namelist[i] = "N. A.";         }      }      public string this[int index]      {         get         {            string tmp;            if( index >= 0 && index <= size-1 )            {               tmp = namelist[index];            }            else            {               tmp = "";            }            return ( tmp );         }         set         {            if( index >= 0 && index <= size-1 )            {               namelist[index] = value;            }         }      }      public int this[string name]      {         get         {            int index = 0;            while(index < size)            {               if (namelist[index] == name)               {                return index;               }               index++;            }            return index;         }      }      static void Main(string[] args)      {         IndexedNames names = new IndexedNames();         names[0] = "Zara";         names[1] = "Riz";         names[2] = "Nuha";         names[3] = "Asif";         names[4] = "Davinder";         names[5] = "Sunil";         names[6] = "Rubic";         // 使用帶有 int 參數的第一個索引器         for (int i = 0; i < IndexedNames.size; i++)         {            Console.WriteLine(names[i]);         }         // 使用帶有 string 參數的第二個索引器         Console.WriteLine(names["Nuha"]);         Console.ReadKey();      }   }}

當上面的代碼被編譯和執行時,它會產生下列結果:

ZaraRizNuhaAsifDavinderSunilRubicN. A.N. A.N. A.2

以上就是【c#教程】C# 索引器(Indexer)的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.