C#中,索引器的作用和用法

请详细点,谢谢有文件示例最好... 请详细点,谢谢有文件示例最好 展开
 我来答
匿名用户
推荐于2018-01-22
展开全部
实例+索引的方法来访问类成员。
using System;
class MyTest
{
public static int Main()
{
SchoolMate myMate=new SchoolMate();
Console.WriteLine(myMate.linkman[0]); //直接访问成员

//以索引器的形式访问成员
Console.WriteLine("name:{0}",myMate[0]);

Console.WriteLine("Enter your name:");
myMate[0]=Console.ReadLine();
Console.WriteLine("name:{0}",myMate[0]);
Console.WriteLine("sex:{0}",myMate[1]);
Console.WriteLine("age:{0}",myMate[2]);
return 0;
}
}
class SchoolMate
{
public string[] linkman;

public SchoolMate()
{
linkman=new string[]{"yesline","male","23"};
}

public string this[int index]
//string指返回值,this指类,或此类创建的实例。
{
get
{
return linkman[index];
}
set
{
linkman[index]=value;
}
}

}
在此成员中,访问linkman数组当然可以用另外的方法,如访问第一个成员:myMate.linkman[0]。
既然可以这样,为什么要用索引器呢?书上说当类是容器时用索引器有用,可我还没看到此类例子。
可以重载索引器。如再定义一个索引器:
public int othertest=23;
//定义
public int this[string index] //index的类型不能在为int,因为已定义过
{
get{return othertest;}
set{othertest=value;}
}
//使用,查看结果:
Console.WriteLine(myMate["1"]);
//myMate[""]中所以可以为任意string
//输出:23
光点科技
2023-08-15 广告
通常情况下,我们会按照结构模型把系统产生的数据分为三种类型:结构化数据、半结构化数据和非结构化数据。结构化数据,即行数据,是存储在数据库里,可以用二维表结构来逻辑表达实现的数据。最常见的就是数字数据和文本数据,它们可以某种标准格式存在于文件... 点击进入详情页
本回答由光点科技提供
匿名用户
推荐于2017-05-31
展开全部
索引器的两种用法 和 作用 索引器允许您按照与数组相同的方式对类、结构或接口进行索引。有关对接口使用索引器的更多信息,请参见接口索引器。要声明类或结构上的索引器,请使用 this 关键字,如下例所示: 复制代码
public int this[int index] // Indexer declaration
{
// get and set accessors
}
备注
索引器类型及其参数类型必须至少如同索引器本身一样是可访问的。有关可访问级别的更多信息,请参见访问修饰符。索引器的签名由其形参的数量和类型组成。它不包括索引器类型或形参名。如果在同一类中声明一个以上的索引器,则它们必须具有不同的签名。索引器值不归类为变量;因此,不能将索引器值作为 ref 或 out 参数来传递。要为索引器提供一个其他语言可以使用的名字,请使用声明中的 name 属性。例如: 复制代码
[System.Runtime.CompilerServices.CSharp.IndexerName("TheItem")]
public int this [int index] // Indexer declaration
{
}
此索引器将具有名称 TheItem。不提供名称属性将生成 Item 默认名称。示例 1
说明
下面的示例说明如何声明私有数组字段、arr 和索引器。使用索引器可直接访问实例 test[i]。另一种使用索引器的方法是将数组声明为 public 成员并直接访问它的成员 arr[i]。代码
C# 复制代码
class IndexerClass
{
private int[] arr = new int[100];
public int this[int index] // Indexer declaration
{
get
{
// Check the index limits.
if (index < 0 || index >= 100)
{
return 0;
}
else
{
return arr[index];
}
}
set
{
if (!(index < 0 || index >= 100))
{
arr[index] = value;
}
}
}
}class MainClass
{
static void Main()
{
IndexerClass test = new IndexerClass();
// Call the indexer to initialize the elements #3 and #5.
test[3] = 256;
test[5] = 1024;
for (int i = 0; i <= 10; i++)
{
System.Console.WriteLine("Element #{0} = {1}", i, test[i]);
}
}
} 输出
Element #0 = 0 Element #1 = 0 Element #2 = 0 Element #3 = 256 Element #4 = 0 Element #5 = 1024 Element #6 = 0 Element #7 = 0 Element #8 = 0 Element #9 = 0 Element #10 = 0 请注意,当计算索引器的访问时(例如,在 Console.Write 语句中),将调用 get 访问器。因此,如果 get 访问器不存在,将发生编译时错误。使用其他值进行索引
C# 并不将索引类型限制为整数。例如,对索引器使用字符串可能是有用的。通过搜索集合内的字符串并返回相应的值,可以实现此类的索引器。由于访问器可被重载,字符串和整数版本可以共存。示例 2
说明
在此例中,声明了存储星期几的类。声明了一个 get 访问器,它接受字符串(天名称),并返回相应的整数。例如,星期日将返回 0,星期一将返回 1,等等。代码
C# 复制代码
// Using a string as an indexer value
class DayCollection
{
string[] days = { "Sun", "Mon", "Tues", "Wed", "Thurs", "Fri", "Sat" }; // This method finds the day or returns -1
private int GetDay(string testDay)
{
int i = 0;
foreach (string day in days)
{
if (day == testDay)
{
return i;
}
i++;
}
return -1;
} // The get accessor returns an integer for a given string
public int this[string day]
{
get
{
return (GetDay(day));
}
}
}class Program
{
static void Main(string[] args)
{
DayCollection week = new DayCollection();
System.Console.WriteLine(week["Fri"]);
System.Console.WriteLine(week["Made-up Day"]);
}
} 输出
5 -1 可靠编程
提高索引器的安全性和可靠性有两种主要的方法:当设置并检索来自索引器访问的任何缓冲区或数组的值时,请始终确保您的代码执行范围和类型检查。应当为 get 和 set 访问器的可访问性设置尽可能多的限制。这一点对 set 访问器尤为重要。有关更多信息,请参见非对称访问器可访问性(C# 编程指南)。
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式