-
C# 索引器的理解和使用
此部分内容引用自MSDN文档
使用索引器可以用类似于数组的方式为对象建立索引。
get 取值函数返回值。 set 取值函数分配值。
this 关键字用于定义索引器。
value 关键字用于定义 set 索引器所赋的值。
索引器不必根据整数值进行索引;由你决定如何定义特定的查找机制。
索引器可被重载。
索引器可以有多个形参,例如当访问二维数组时。
我对索引器的理解就是,他是一个读写自定义类中的数据集合的接口,连接自定义类中的数据集合,并可对其进行读写操作
通过该接口简化或者丰富对自定义类中数据集合的操作方式
索引器实际上相当于一个方法,支持多个及多种类型的参数,不同的是,其返回值不可为void,并且索引器除可传入参数外,还可对其进行赋值,即it[0] = “测试数据0”
创建索引器时,其返回值类型亦为其value关键字所使用的类型,即定义了返回值类型的同时,也定义了其可接受的值类型
创建索引器时有几部分内容是必须的:
必须先创建索引器所需要的容器(我把它称为容器,暂时还没看到有对它的具体定义)
创建索引器需要使用this关键字
索引器中必须要包含get和set访问器,在C#7.0可以使用表达式主体(=>)简化
在使用表达式主体成员实现索引器时,必须额外提供容器的修改接口,因为通过表达式主体实现的索引器是不包含set关键字的
此索引器使用简单的string数组作为容器,此索引器使用int类型的i进行索引,返回值为string类型。
class SampleIndxer
{
//可供索引器使用的容器,暂用数组
private string[] sampleStrArr = new string[10];
//创建索引器
public string this[int i]
{
get { return sampleStrArr[i]; }
set { sampleStrArr[i] = value; }
}
}
class Test
{
public static void test()
{
//简单索引器测试
SampleIndxer it = new SampleIndxer();
it[0] = “测试数据0”;
it[1] = “测试数据1”;
Console.WriteLine(“it[0]:” + it[0]);
Console.WriteLine(“it[1]:” + it[1]);
Console.ReadLine();
}}
索引器中同时也可以使用泛型作为参数class SampleGenericIndexer
{
//可供索引器使用的主体变量,暂用泛型数组代替
private T[] sampleGenericStrArr = new T[10];
public T this[int i]
{
get { return sampleGenericStrArr[i]; }
set { sampleGenericStrArr[i] = value; }
}
}class Test
{
public static void test()
{
//泛型索引器测试
SampleGenericIndexer it = new SampleGenericIndexer();
it[0] = “测试数据0”;
it[1] = “测试数据1”;
Console.WriteLine(“it[0]:” + it[0]);
Console.WriteLine(“it[1]:” + it[1]);
Console.ReadLine();
}
}
在C#7.0之后可以通过表达式主体实现索引器,需要注意的是,通过表达式主体实现索引器时,必须提供数据修改的接口,因为通过表达式主体实现索引时仅提供了get访问器,并未提供set访问器。或者将容器的可访问性设置为使用该类的地方可以访问,直接对容器进行数据操作,仅使用索引器进行数据的读取。class ExpressionBodyIndexer
{
//可供索引器使用的主体变量,暂用泛型数组代替
private T[] expressionBodyStrArr = new T[10];
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
} class Test { public static void test() { //泛型索引器测试 ExpressionBodyIndexer it = new ExpressionBodyIndexer(); //此条件下不可通过it[0]索引方式进行数据添加,因为他是只读的 //必须通过提供的Add方法添加数据 it.Add(“测试数据0”); it.Add(“测试数据1”); it.Add(“测试数据2”); Console.WriteLine(“it[0]:” + it[0]); Console.WriteLine(“it[1]:” + it[1]); Console.WriteLine(“it[2]:” + it[2]); Console.ReadLine(); } } 索引器既然是可以简化或者丰富对自定义类中数据集合的操作方式,那么自然也可以使用稍微复杂点的数据集合作为索引器的容器。本例中使用Dictionary作为容器。
class VariableLengthIndexer { /// /// 可供索引器使用的容器,此处使用Dictionary代替,
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
} class Test { public static void test() { //泛型索引器测试 VariableLengthIndexer it = new VariableLengthIndexer(); //此条件下不可通过it[0]索引方式进行数据添加,因为他是只读的 //必须通过提供的Add方法添加数据 it.Add(“数据0”, “测试数据0”); it.Add(“数据1”, “测试数据1”); it.Add(“数据2”, “测试数据2”); Console.WriteLine(“it[数据1]:” + it[“数据1”]); Console.WriteLine(“it[数据2]:” + it[“数据2”]); Console.WriteLine(“it[数据3]:” + it[“数据3”]); Console.ReadLine(); } } 前面的几个例子中,仅仅是对于索引器的认识,实际工作中并没有使用价值,因为所作的操作完全可以使用 .NET 中预定义的数据集合完成。个人觉得C#7.0之后提供的表达式主体实际作用并不大,甚至没有必要。个人认为索引器最大价值存在于get和set访问器中对于数据操作的自定义处理,可以在访问器中对数据进行修正或者过滤,这才是其比较好的价值体现。
通过在索引器中对数据处理做封装,可以简化平常大部分的操作,此类也可根据实际情况嵌入到数据库访问实体类中。
/// /// 本实例通过考试成绩的处理演示索引器对数据处理的过程 /// class TestScore { private Dictionary<string, int> scores = new Dictionary<string, int>();
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
}
class Test { public static void test() { TestScore ts = new TestScore(); ts[“张三”] = “23”; ts[“李四”] = “54”; ts[“王二”] = “66”; ts[“麻子”] = “89”; ts[“王朝”] = “100”; ts[“马汉”] = “5”; ts[“老王”] = “”;
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
}
前面通过单参数所以其的实现分析了索引器的使用方式即可能的使用范围,下面进行下简单的拓展,分析多参数索引器的使用方式,依旧使用上面分数的例子做演示。
struct Student { public string Name; public string Classes; public string Grade; public int Score;
- 1
- 2
- 3
- 4
}
public class ArrayList1 : ArrayList { public override bool Contains(object item) { if (item.GetType().ToString() == “Student”) { foreach (var a in this) { if (a.GetType().ToString() == “Student”) { var s1 = (Student)a; var s2 = (Student)item; if (s1.Name == s2.Name && s1.Classes == s2.Classes && s1.Grade == s2.Grade) { return true; } return false; } } } return base.Contains(item); } }
class TestScore { public ArrayList1 ArrList = new ArrayList1();
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
}
class Test { public static void test() { TestScore ts = new TestScore(); ts[“张三”, “三年级”, “二班”] = “23”; ts[“李四”, “三年级”, “二班”] = “54”; ts[“王二”, “三年级”, “二班”] = “66”; ts[“麻子”, “三年级”, “二班”] = “89”; ts[“王朝”, “三年级”, “二班”] = “100”; ts[“马汉”, “三年级”, “二班”] = “5”; ts[“老王”, “三年级”, “二班”] = “”; Console.WriteLine(“查看存入的数据:”); Console.WriteLine($“共存入了:{ts.ArrList.Count}组数据”); Console.WriteLine(); //不使用索引器,直接访问实例中的容器
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
}
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-9AVYoJlX-1608619168987)(https://i.loli.net/2019/12/29/b7feVjd6Xzxi3um.png#pic_center)]
同时二维数组中多个参数的实现方式,同样也支持二维数组
public string[,] sampleStrArr = new string[10,10]; public string this[int x,int y] { get { return sampleStrArr[x, y]; } set { sampleStrArr[x, y] = value; } }
public static void test() { SampleIndxer it = new SampleIndxer(); it[0, 0] = “测试数据0,0”; it[0, 1] = “测试数据0,1”; it[1, 1] = “测试数据1,1”; it[1, 2] = “测试数据1,2”; it[3, 3] = “测试数据3,3”;
- 1
- 2
- 3
- 4
- 5
- 6
- 7
} 前面说过,索引器相当于一个方法,他们同样都支持重载。与方法不同的是,索引器没有独立的名称,只能通过返回值的不同和参数的不同来区分不同的签名,从而实现重载。
class VariableLengthIndexer { private Dictionary<string, int> dic = new Dictionary<string, int>();
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
} class Test { public static void test() { //泛型索引器测试 VariableLengthIndexer it = new VariableLengthIndexer(); it.Add(“测试数据1”, 1); it.Add(“测试数据2”, 2); it.Add(“测试数据3”, 3); it.Add(“测试数据4”, 4); //通过Key查找Value Console.WriteLine(“通过Key查找Value”); Console.WriteLine(“Key:测试数据1,Value:” + it[“测试数据1”]); Console.WriteLine(“Key:测试数据2,Value:” + it[“测试数据2”]); Console.WriteLine(“Key:测试数据3,Value:” + it[“测试数据3”]); Console.WriteLine(“Key:测试数据4,Value:” + it[“测试数据4”]); //通过Value查找Key Console.WriteLine(“通过Value查找Key”); Console.WriteLine(“Value:1,Key:” + it[1]); Console.WriteLine(“Value:2,Key:” + it[2]); Console.WriteLine(“Value:3,Key:” + it[3]); Console.WriteLine(“Value:4,Key:” + it[4]); //通过Value查找Key,并添加无效参数传入 Console.WriteLine(“通过Value查找Key,并添加无效参数传入”); Console.WriteLine(“Value:1,Key:” + it[1, 1]); Console.WriteLine(“Value:2,Key:” + it[2, 2]); Console.WriteLine(“Value:3,Key:” + it[3, 3]); Console.WriteLine(“Value:4,Key:” + it[4, 4]);
- 1
- 2
}
参考文献:
1 C# 中常用的索引器 https://www.cnblogs.com/daimajun/p/6819081.html
2 索引器(C# 编程指南)https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/indexers/
本文作者:Hope-forever 本文链接:https://www.cnblogs.com/Hope-