Dictionary<TKey,TValue>.IDictionary.Item[Object] Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá nebo nastaví hodnotu se zadaným klíčem.
property System::Object ^ System::Collections::IDictionary::Item[System::Object ^] { System::Object ^ get(System::Object ^ key); void set(System::Object ^ key, System::Object ^ value); };
object System.Collections.IDictionary.Item[object key] { get; set; }
object? System.Collections.IDictionary.Item[object key] { get; set; }
member this.System.Collections.IDictionary.Item(obj) : obj with get, set
Property Item(key As Object) As Object Implements IDictionary.Item
Parametry
- key
- Object
Klíč hodnoty, kterou chcete získat
Hodnota vlastnosti
Hodnota přidružená k zadanému klíči nebo null
pokud key
není ve slovníku nebo key
je typu, který nelze přiřadit k typu TKey
Dictionary<TKey,TValue>klíče .
Implementuje
Výjimky
key
je null
.
Přiřazuje se hodnota typu key
, který nelze přiřadit k typu TKey
Dictionary<TKey,TValue>klíče .
-nebo-
Přiřazuje se hodnota typu value
, který nelze přiřadit k hodnotovém typu TValue
Dictionary<TKey,TValue>.
Příklady
Následující příklad kódu ukazuje, jak použít IDictionary.Item[] vlastnost (indexer v jazyce C#) System.Collections.IDictionary rozhraní s Dictionary<TKey,TValue>a způsoby, jak se vlastnost liší od Dictionary<TKey,TValue>.Item[] vlastnosti.
Příklad ukazuje, že podobně jako Dictionary<TKey,TValue>.Item[] vlastnost Dictionary<TKey,TValue>.IDictionary.Item[] může vlastnost změnit hodnotu přidruženou k existujícímu klíči a dá se použít k přidání nového páru klíč-hodnota, pokud zadaný klíč není ve slovníku. Příklad také ukazuje, že na rozdíl od Dictionary<TKey,TValue>.Item[] vlastnosti, vlastnost nevyvolá výjimku, Dictionary<TKey,TValue>.IDictionary.Item[] pokud key
není ve slovníku, a místo toho vrací odkaz null. Nakonec příklad ukazuje, že získání Dictionary<TKey,TValue>.IDictionary.Item[] vlastnosti vrátí odkaz null, pokud key
není správný datový typ, a že nastavení vlastnosti vyvolá výjimku, pokud key
není správný datový typ.
Příklad kódu je součástí většího příkladu, včetně výstupu, který je k dispozici pro metodu IDictionary.Add .
using System;
using System.Collections;
using System.Collections.Generic;
public class Example
{
public static void Main()
{
// Create a new dictionary of strings, with string keys,
// and access it using the IDictionary interface.
//
IDictionary openWith = new Dictionary<string, string>();
// Add some elements to the dictionary. There are no
// duplicate keys, but some of the values are duplicates.
// IDictionary.Add throws an exception if incorrect types
// are supplied for key or value.
openWith.Add("txt", "notepad.exe");
openWith.Add("bmp", "paint.exe");
openWith.Add("dib", "paint.exe");
openWith.Add("rtf", "wordpad.exe");
Imports System.Collections
Imports System.Collections.Generic
Public Class Example
Public Shared Sub Main()
' Create a new dictionary of strings, with string keys,
' and access it using the IDictionary interface.
'
Dim openWith As IDictionary = _
New Dictionary(Of String, String)
' Add some elements to the dictionary. There are no
' duplicate keys, but some of the values are duplicates.
' IDictionary.Add throws an exception if incorrect types
' are supplied for key or value.
openWith.Add("txt", "notepad.exe")
openWith.Add("bmp", "paint.exe")
openWith.Add("dib", "paint.exe")
openWith.Add("rtf", "wordpad.exe")
// The Item property is another name for the indexer, so you
// can omit its name when accessing elements.
Console.WriteLine("For key = \"rtf\", value = {0}.",
openWith["rtf"]);
// The indexer can be used to change the value associated
// with a key.
openWith["rtf"] = "winword.exe";
Console.WriteLine("For key = \"rtf\", value = {0}.",
openWith["rtf"]);
// If a key does not exist, setting the indexer for that key
// adds a new key/value pair.
openWith["doc"] = "winword.exe";
// The indexer returns null if the key is of the wrong data
// type.
Console.WriteLine("The indexer returns null"
+ " if the key is of the wrong type:");
Console.WriteLine("For key = 2, value = {0}.",
openWith[2]);
// The indexer throws an exception when setting a value
// if the key is of the wrong data type.
try
{
openWith[2] = "This does not get added.";
}
catch (ArgumentException)
{
Console.WriteLine("A key of the wrong type was specified"
+ " when assigning to the indexer.");
}
' The Item property is the default property, so you
' can omit its name when accessing elements.
Console.WriteLine("For key = ""rtf"", value = {0}.", _
openWith("rtf"))
' The default Item property can be used to change the value
' associated with a key.
openWith("rtf") = "winword.exe"
Console.WriteLine("For key = ""rtf"", value = {0}.", _
openWith("rtf"))
' If a key does not exist, setting the default Item property
' for that key adds a new key/value pair.
openWith("doc") = "winword.exe"
' The default Item property returns Nothing if the key
' is of the wrong data type.
Console.WriteLine("The default Item property returns Nothing" _
& " if the key is of the wrong type:")
Console.WriteLine("For key = 2, value = {0}.", _
openWith(2))
' The default Item property throws an exception when setting
' a value if the key is of the wrong data type.
Try
openWith(2) = "This does not get added."
Catch
Console.WriteLine("A key of the wrong type was specified" _
& " when setting the default Item property.")
End Try
// Unlike the default Item property on the Dictionary class
// itself, IDictionary.Item does not throw an exception
// if the requested key is not in the dictionary.
Console.WriteLine("For key = \"tif\", value = {0}.",
openWith["tif"]);
' Unlike the default Item property on the Dictionary class
' itself, IDictionary.Item does not throw an exception
' if the requested key is not in the dictionary.
Console.WriteLine("For key = ""tif"", value = {0}.", _
openWith("tif"))
}
}
End Sub
End Class
Poznámky
Tato vlastnost umožňuje přístup ke konkrétní hodnotě v kolekci pomocí následující syntaxe jazyka C#: myCollection[key]
(myCollection(key)
v jazyce Visual Basic).
Vlastnost můžete použít Item[] také k přidání nových prvků nastavením hodnoty klíče, který ve slovníku neexistuje, například myCollection["myNonexistentKey"] = myValue
. Pokud však zadaný klíč již ve slovníku existuje, nastavení Item[] vlastnosti přepíše starou hodnotu. Naproti tomu Add metoda neupravuje existující prvky.
Jazyk C# používá klíčové slovo toto k definování indexerů místo implementace IDictionary.Item[] vlastnosti. Visual Basic se implementuje IDictionary.Item[] jako výchozí vlastnost, která poskytuje stejné funkce indexování.
Získání nebo nastavení hodnoty této vlastnosti se blíží operaci O(1).