SortedList<TKey,TValue>.IDictionary.Item[Object] Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta l'elemento con la chiave specificata.
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
Parametri
- key
- Object
Chiave dell'elemento da ottenere o impostare.
Valore della proprietà
L'elemento con la chiave specificata, o null
se key
non è presente nel dizionario o se il tipo di key
non può essere assegnato al tipo di chiave TKey
della classe SortedList<TKey,TValue>.
Implementazioni
Eccezioni
key
è null
.
Viene assegnato un valore e il tipo di key
non può essere assegnato al tipo di chiave TKey
della classeSortedList<TKey,TValue>.
-oppure-
Viene assegnato un valore e il tipo di value
non può essere assegnato al tipo di valore TValue
della classeSortedList<TKey,TValue>.
Esempio
Nell'esempio di codice seguente viene illustrato come usare la IDictionary.Item[] proprietà (l'indicizzatore in C#) dell'interfaccia System.Collections.IDictionary con un SortedList<TKey,TValue>oggetto e come la proprietà differisce dalla SortedList<TKey,TValue>.Item[] proprietà .
L'esempio mostra che, come la SortedList<TKey,TValue>.Item[] proprietà , la SortedList<TKey,TValue>.IDictionary.Item[] proprietà può modificare il valore associato a una chiave esistente e può essere usato per aggiungere una nuova coppia chiave/valore se la chiave specificata non è nell'elenco ordinato. L'esempio mostra inoltre che, a differenza della SortedList<TKey,TValue>.Item[] proprietà , la SortedList<TKey,TValue>.IDictionary.Item[] proprietà non genera un'eccezione se key
non è presente nell'elenco ordinato, restituendo invece un riferimento Null. L'esempio dimostra infine che il recupero della SortedList<TKey,TValue>.IDictionary.Item[] proprietà restituisce un riferimento Null se key
non è il tipo di dati corretto e tale impostazione genera un'eccezione se key
non è il tipo di dati corretto.
L'esempio di codice fa parte di un esempio più ampio, incluso l'output, fornito per il IDictionary.Add metodo .
using System;
using System.Collections;
using System.Collections.Generic;
public class Example
{
public static void Main()
{
// Create a new sorted list of strings, with string keys,
// and access it using the IDictionary interface.
//
IDictionary openWith = new SortedList<string, string>();
// Add some elements to the sorted list. 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 sorted list of strings, with string keys,
' and access it using the IDictionary interface.
'
Dim openWith As IDictionary = _
New sortedList(Of String, String)
' Add some elements to the sorted list. 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 SorteList class
// itself, IDictionary.Item does not throw an exception
// if the requested key is not in the sorted list.
Console.WriteLine("For key = \"tif\", value = {0}.",
openWith["tif"]);
' Unlike the default Item property on the SortedList class
' itself, IDictionary.Item does not throw an exception
' if the requested key is not in the sorted list.
Console.WriteLine("For key = ""tif"", value = {0}.", _
openWith("tif"))
}
}
End Sub
End Class
Commenti
Questa proprietà restituisce null
se è di un tipo che non è assegnabile al tipo TKey
di chiave di SortedList<TKey,TValue>key
.
Questa proprietà consente di accedere a un elemento specifico nella raccolta utilizzando la sintassi seguente: myCollection[key]
.
È anche possibile utilizzare la Item[] proprietà per aggiungere nuovi elementi impostando il valore di una chiave che non esiste nel dizionario, myCollection["myNonexistentKey"] = myValue
ad esempio . Tuttavia, se la chiave specificata esiste già nel dizionario, l'impostazione della Item[] proprietà sovrascrive il valore precedente. Al contrario, il Add metodo non modifica gli elementi esistenti.
Il linguaggio C# usa la parola chiave per definire gli indicizzatori anziché implementare la IDictionary.Item[] proprietà . In Visual Basic la proprietà IDictionary.Item[] viene implementata come predefinita per fornire la stessa funzionalità di indicizzazione.
Il recupero del valore di questa proprietà è un'operazione O(log n
), dove n è Count. L'impostazione della proprietà è un'operazione O(log n
) se la chiave è già presente in SortedList<TKey,TValue>. Se la chiave non è presente nell'elenco, l'impostazione della proprietà è un'operazione O(n
) per i dati non ordinato o O(log n
) se il nuovo elemento viene aggiunto alla fine dell'elenco. Se l'inserimento causa un ridimensionamento, l'operazione è O(n
).