C# 索引器能否 继承
展开全部
索引器也是类,可以继承。
using System;
class IndexerBase
{
private int[] arr = new int[100];
public int this[int i]
{
get
{
return arr[i];
}
set
{
arr[i] = value;
}
}
}
class Indexer : IndexerBase
{
}
class Program
{
static void Main()
{
Indexer r = new Indexer();
r[0] = 5;
Console.WriteLine(r[0]);
}
}
using System;
class IndexerBase
{
private int[] arr = new int[100];
public int this[int i]
{
get
{
return arr[i];
}
set
{
arr[i] = value;
}
}
}
class Indexer : IndexerBase
{
}
class Program
{
static void Main()
{
Indexer r = new Indexer();
r[0] = 5;
Console.WriteLine(r[0]);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询