亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

C# 索引器有什么作用

發布時間:2021-06-18 10:59:01 來源:億速云 閱讀:149 作者:chen 欄目:編程語言

這篇文章主要介紹“C# 索引器有什么作用”,在日常操作中,相信很多人在C# 索引器有什么作用問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C# 索引器有什么作用”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

概述

索引器(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();       }    } }

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

Zara Riz Nuha Asif Davinder Sunil Rubic N. 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();       }    } }

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

Zara Riz Nuha Asif Davinder Sunil Rubic N. A. N. A. N. A. 2

到此,關于“C# 索引器有什么作用”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

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

AI

怀集县| 固阳县| 蕲春县| 隆回县| 安阳县| 沙河市| 马龙县| 宁城县| 宁阳县| 库尔勒市| 高阳县| 鹤庆县| 台安县| 昌乐县| 延吉市| 武宁县| 德州市| 安福县| 阜南县| 商城县| 京山县| 芮城县| 离岛区| 瑞丽市| 将乐县| 建德市| 温泉县| 仁化县| 永修县| 昌都县| 集贤县| 白朗县| 浦江县| 大理市| 肇源县| 灵山县| 轮台县| 友谊县| 峡江县| 威远县| 元氏县|