C#索引器的作用及使用

來源:互聯網
上載者:User

標籤:style   blog   color   使用   資料   ar   div   new   

1. 作用:

    可以使得類和執行個體能夠像數組那樣使用一樣,又稱為帶參屬性

2. 區分

  (1)索引器與數組的比較:

             索引器的索引值不受類型限制。用來訪問數組的索引值一定是整數,而索引器可以是其他類型的索引值。
             索引器允許重載,一個類可以有多個索引器。
             索引器不是一個變數沒有直接對應的資料存放區地方。索引器有get和set訪問器。
             索引器允許類和結構的執行個體按照與數組相同的方式進行索引,索引器類似與屬性,不同之處在於他們的訪問器採用參數。被稱為有參屬性。

     (2)索引器與屬性的比較:
            標示方式:屬性以名稱來標識,索引器以函數簽名來標識。
            索引器可以被重載。屬性則不可以被重載。
            屬性可以為靜態,索引器屬於執行個體成員,不能被聲明為static

3. 使用

   (1)例子1

string str = "abc";char c = str[0];

  (2)例子2

static void main(string[] args){    IndexClass indexClass = new IndexClass();    indexClass[0] = "王五";    indexClass[1] = "趙四";   }Class IndexClass(){      private string[] name  = new string[10];      public string this[int index]      {          get {return name[index];}          set {name[index]=value;}      }}

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.