一.索引器(Indexer)的定义
索引器(Indexer) 允许一个对象可以像数组一样使用下标的方式来访问。当为类定义一个索引器时,该类的行为就会像一个 虚拟数组(virtual array) 一样,可以使用数组访问运算符 [ ] 来访问该类的的成员。
二.索引器(Indexer)的语法
一维索引器的语法如下:
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] = "Jack";
names[1] = "Tom";
names[2] = "Jeff";
names[3] = "Peter";
names[4] = "Mike";
names[5] = "Lee";
names[6] = "Michael";
for ( int i = 0; i < IndexedNames.size; i++ )
{
Console.WriteLine(names[i]);
}
Console.ReadKey();
}
}
}
四.重载索引器(Indexer)
索引器(Indexer)可被重载,声明的时候也可带有多个参数,且每个参数可以是不同的类型,没有必要让索引器必须是整型的。下面的实例演示了重载索引器:
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] = "Jack";
names[1] = "Tom";
names[2] = "Jeff";
names[3] = "Peter";
names[4] = "Mike";
names[5] = "Lee";
names[6] = "Michael";
// 使用带有 int 参数的第一个索引器
for (int i = 0; i < IndexedNames.size; i++)
{
Console.WriteLine(names[i]);
}
// 使用带有 string 参数的第二个索引器
Console.WriteLine(names["Michael"]);
Console.ReadKey();
}
}
}
五.索引器(Indexer)的注意事项
5.1索引器可以具有多个参数,但每个参数的类型必须唯一;
5.2索引器的参数可以是值类型或引用类型;
5.3可以根据需要只声明 get 或 set 访问器,但至少必须实现其中一个;
六. 总结
索引器是 C# 中一个强大且灵活的特性,允许类的实例像数组一样通过索引来访问。它提供了一种简洁、直观的方式来管理类的实例数据,特别适用于需要按照索引方式进行访问和修改的场景。