索引器在 C# 中的使用
索引器允许像数组一样对对象进行索引。当你为一个类定义了一个索引器后,这个类的行为类似于虚拟数组。这样就可以使用数组访问运算符([ ])来访问该类的实例。
索引器的语法
一个一维索引器具有以下的语法:
element-type this[int index] {
get {
}
set {
}
}
索引器的使用
索引器行为的声明在某种程度上类似于属性。与属性相似,使用 get 和 set 访问器来定义一个索引器。但是,属性返回或设置一个特定的数据成员,而索引器返回或设置来自对象实例的一个特定值。换句话说,它将实例数据分解成更小的部分并对每一部分进行索引,获取或设置每一部分。
定义属性涉及提供一个属性名。索引器不是通过名字定义的,而是通过关键字 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] = "Zara";
names[1] = "Riz";
names[2] = "Nuha";
names[3] = "Asif";
names[4] = "Davinder";
names[5] = "Sunil";
names[6] = "Rubic";
for ( int i = 0; i < IndexedNames.size; i++ ) {
Console.WriteLine(names[i]);
}
Console.ReadKey();
}
}
}
当以上代码被编译和执行时,它产生如下结果:
Zara
Riz
Nuha
Asif
Davinder
Sunil
Rubic
N. A.
N. A.
N. A.
重载索引器
索引器可以被重载。索引器也可以被声明为带有多个参数,并且每个参数可以是不同的类型。索引不一定是整数。C# 允许索引为其他类型,例如字符串。
下面的例子展示了重载索引器:
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] = "Zara";
names[1] = "Riz";
names[2] = "Nuha";
names[3] = "Asif";
names[4] = "Davinder";
names[5] = "Sunil";
names[6] = "Rubic";
for (int i = 0; i < IndexedNames.size; i++) {
Console.WriteLine(names[i]);
}
Console.WriteLine(names["Nuha"]);
Console.ReadKey();
}
}
}
当以上代码被编译和执行时,它产生如下结果:
Zara
Riz
Nuha
Asif
Davinder
Sunil
Rubic
N. A.
N. A.
N. A.
2