C# Language
Indeksator
Szukaj…
Składnia
- public Return Wpisz ten [indeks IndexType] {pobierz {...} ustaw {...}}
Uwagi
Indeksator umożliwia składni podobnej do tablicy dostęp do właściwości obiektu za pomocą indeksu.
- Może być stosowany w klasie, strukturze lub interfejsie.
- Może być przeciążony.
- Może używać wielu parametrów.
- Może być używany do uzyskiwania dostępu i ustawiania wartości.
- Może używać dowolnego typu dla swojego indeksu.
Prosty indeksator
class Foo
{
private string[] cities = new[] { "Paris", "London", "Berlin" };
public string this[int index]
{
get {
return cities[index];
}
set {
cities[index] = value;
}
}
}
Stosowanie:
var foo = new Foo();
// access a value
string berlin = foo[2];
// assign a value
foo[0] = "Rome";
Indeksator z 2 argumentami i interfejsem
interface ITable {
// an indexer can be declared in an interface
object this[int x, int y] { get; set; }
}
class DataTable : ITable
{
private object[,] cells = new object[10, 10];
/// <summary>
/// implementation of the indexer declared in the interface
/// </summary>
/// <param name="x">X-Index</param>
/// <param name="y">Y-Index</param>
/// <returns>Content of this cell</returns>
public object this[int x, int y]
{
get
{
return cells[x, y];
}
set
{
cells[x, y] = value;
}
}
}
Przeciążenie modułu indeksującego, aby utworzyć SparseArray
Przeciążając indeksatora możesz stworzyć klasę, która wygląda jak tablica, ale nie jest. Będzie miał metody pobierania i ustawiania O (1), może uzyskiwać dostęp do elementu o indeksie 100, a mimo to nadal mieć w sobie rozmiar elementów. Klasa SparseArray
class SparseArray
{
Dictionary<int, string> array = new Dictionary<int, string>();
public string this[int i]
{
get
{
if(!array.ContainsKey(i))
{
return null;
}
return array[i];
}
set
{
if(!array.ContainsKey(i))
array.Add(i, value);
}
}
}
Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow