您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關一分鐘帶你了解c#中的索引器,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
概念
索引器(Indexer) 允許類中的對象可以像數組那樣方便、直觀的被引用。當為類定義一個索引器時,該類的行為就會像一個 虛擬數組(virtual array) 一樣。
索引器可以有參數列表,且只能作用在實例對象上,而不能在類上直接作用。
可以使用數組訪問運算符([ ])來訪問該類的實例。
索引器的行為的聲明在某種程度上類似于屬性(property)。屬性可使用 get 和 set 訪問器來定義索引器。但是屬性返回或設置的是一個特定的數據成員,而索引器返回或設置對象實例的一個特定值。
定義一個一維數組的索引器:
element-type this[int index] { // get 訪問器 get { // 返回 index 指定的值 } // set 訪問器 set { // 設置 index 指定的值 } }
提示:索引器必須以this關鍵字定義,this 是類實例化之后的對象
實例:
using System; namespace C_Pro { public class Student { private string name; private string grade; public string Name { get {return name; } set {name = value; } } public string Grade { get {return grade; } set {grade = value; } } // 定義索引器 public string this[int index] { get { if (index == 0) return name; else if (index == 1) return grade; else return null; } set { if (index == 0) name = value; else if (index == 1) grade = value; } } static void Main(string[] args) { Student s = new Student(); s[0] = "Jeson"; s[1] = "First-year"; Console.WriteLine(s.Name); Console.WriteLine(s.Grade); Console.ReadKey(); } } }
運行后結果:
Jeson
First-year
重載索引器
索引器(Indexer)可被重載。索引器聲明的時候也可帶有多個參數,且每個參數可以是不同的類型。沒有必要讓索引器必須是整型的。C# 允許索引器可以是其他類型,例如,字符串類型。
using System; namespace C_Pro { public class IndexedNames { private string[] namelist = {"a", "b", "c", "d"}; // 輸入namelist的index返回對應的值 public string this[int index] { get { return namelist[index]; } set { namelist[index] = value; } } // 輸入namelist的值,返回對應的索引 public int this[string name] { get { for (int i=0; i<namelist.Length; i++) { if (namelist[i] == name) return i; } return -1; } } static void Main(string[] args) { IndexedNames name = new IndexedNames(); Console.WriteLine(name[1]); Console.WriteLine(name["a"]); } } }
運行后結果:
b
0
索引器與數組的區別:
索引器與屬性的區別:
以上就是一分鐘帶你了解c#中的索引器,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。