1. 索引器允许类或结构的实例就像数组一样进行索引。
2. 索引器类似于属性,不同之处在于它们的访问器采用参数。
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
class SampleCollection<T>
{
private T[] arr = new T[100];
publicT this[int i]
{
get
{
return arr;
}
set
{
arr = value;
}
}
}
// This class shows how client code uses theindexer
class Program
{
staticvoid Main(string[] args)
{
SampleCollection<string> stringCollection = newSampleCollection<string>();
stringCollection[0] = "Hello, World";
System.Console.WriteLine(stringCollection[0]);
}
}
/////////////////////////////////////////////////////////////////////////////////////////////////
3.使用索引器可以用类似于数组的方式为对象建立索引。
4. get 访问器返回值。set 访问器分配值。
5.this 关键字用于定义索引器。
6. value 关键字用于定义由 set 索引器分配的值。
7.索引器不必根据整数值进行索引,由您决定如何定义特定的查找机制。
8.索引器可被重载。
9.索引器可以有多个形参,例如当访问二维数组时。 |