黑马程序员技术交流社区
标题:
在接口里,索引器有什么用?
[打印本页]
作者:
飞、
时间:
2013-10-20 14:20
标题:
在接口里,索引器有什么用?
本帖最后由 飞、 于 2013-10-20 17:50 编辑
能否举个简单易懂的列子?
作者:
╰┄轩、辕_ヤ
时间:
2013-10-20 17:17
// 实现接口索引器:
public interface ISomeInterface
{
// 声明索引器:
int this[int index]
{
get;
set;
}
}
//实现接口.
class IndexerClass : ISomeInterface
{
private int[] arr = new int[100];
public int this[int index] // 索引器声明
{
get
{
return arr[index];
}
set
{
arr[index] = value;
}
}
}
class MainClass
{
static void Main()
{
IndexerClass test = new IndexerClass();
System.Random rand = new System.Random();
for (int i = 0; i < 10; i++)
{
test[i] = rand.Next();
}
for (int i = 0; i < 10; i++)
{
System.Console.WriteLine("Element #{0} = {1}", i, test[i]);
}
System.Console.WriteLine("按任意键退出.");
System.Console.ReadKey();
}
}
/*结果:
Element #0 = 360877544
Element #1 = 327058047
Element #2 = 1913480832
Element #3 = 1519039937
Element #4 = 601472233
Element #5 = 323352310
Element #6 = 1422639981
Element #7 = 1797892494
Element #8 = 875761049
Element #9 = 393083859
*/
复制代码
作者:
蜗牛强
时间:
2013-10-20 17:17
接口索引器与类索引器的区别有两个:一是接口索引器不使用修饰符;二是接口索引器只包含访问器get或set,没有实现语句。访问器的用途是指示索引器是可读写、只读还是只写的,如果是可读写的,访问器get或set均不能省略;如果只读的,省略set访问器;如果是只写的,省略get访问器。
例如:
public interface IAddress
{
string this[int index]{get;set;}
string Address{get;set;}
string Answer();
}
表示所声明的接口IAddress包含3个成员:一个索引器、一个属性和一个方法,其中,索引器是可读写的。
索引器与属性的比较
索引器与属性都是类的成员,语法上非常相似。索引器一般用在自定义的集合类中,通过使用索引器来操作集合对象就如同使用数组一样简单;而属性可用于任何自定义类,它增强了类的字段成员的灵活性。
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2