索引器特性
1、get 訪問器返回值。set 訪問器分配值。
2、this 關鍵字用於定義索引器。
3、value 關鍵字用於定義由 set 索引器分配的值。
4、索引器不必根據整數值進行索引,由您決定如何定義特定的查找機制。
5、索引器可被重載。
6、索引器可以有多個形參,例如當訪問二維數組時。
7、索引器使得對象可按照與數組相似的方法進行索引。
代碼示例
復制代碼 代碼如下:
class SampleCollection<T>
{
private T[] arr = new T[100];
public T this[int i]
{
get
{
return arr[i];
}
set
{
arr[i] = value;
}
}
}
class Program
{
static void Main(string[] args)
{
SampleCollection<string> stringCollection = new SampleCollection<string>();
stringCollection[0] = "Hello, World";
System.Console.WriteLine(stringCollection[0]);
}
}