クラスに演算子を追加したいと思います。現在、[]
演算子で置き換えたいGetValue()
メソッドがあります。
class A
{
private List<int> values = new List<int>();
public int GetValue(int index)
{
return values[index];
}
}
public int this[int key]
{
get
{
return GetValue(key);
}
set
{
SetValue(key,value);
}
}
私はこれがあなたが探しているものだと信じています:
class SampleCollection<T>
{
private T[] arr = new T[100];
public T this[int i]
{
get
{
return arr[i];
}
set
{
arr[i] = value;
}
}
}
// This class shows how client code uses the indexer
class Program
{
static void Main(string[] args)
{
SampleCollection<string> stringCollection =
new SampleCollection<string>();
stringCollection[0] = "Hello, World";
System.Console.WriteLine(stringCollection[0]);
}
}
[]演算子はインデクサーと呼ばれます。整数、文字列、またはキーとして使用する他のタイプを取るインデクサーを提供できます。構文は、プロパティアクセサーと同じ原則に従って簡単です。
たとえば、int
がキーまたはインデックスである場合:
public int this[int index]
{
get
{
return GetValue(index);
}
}
また、インデクサーが読み取り専用ではなく読み取りと書き込みになるように、セットアクセサーを追加することもできます。
public int this[int index]
{
get
{
return GetValue(index);
}
set
{
SetValue(index, value);
}
}
別のタイプを使用してインデックスを作成する場合は、インデクサーの署名を変更するだけです。
public int this[string index]
...
public int this[int index]
{
get
{
return values[index];
}
}