SortedList<TKey,TValue>.IDictionary.Item[Object] Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Belirtilen anahtarla öğesini alır veya ayarlar.
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
Parametreler
- key
- Object
Alınacak veya ayarlanacağı öğenin anahtarı.
Özellik Değeri
Belirtilen anahtara sahip öğe veya null
sözlükte değilse key
veya key
anahtar türüne atanamayan bir türdeyse TKey
SortedList<TKey,TValue>.
Uygulamalar
Özel durumlar
key
, null
değeridir.
Bir değer atanıyor ve key
değerinin anahtar türüne atanamayan bir türde TKey
SortedList<TKey,TValue>.
-veya-
Bir değer atanıyor ve value
değerinin değer türüne atanamayan bir türde TValue
SortedList<TKey,TValue>.
Örnekler
Aşağıdaki kod örneği, arabiriminin IDictionary.Item[] özelliğinin (C#'de dizin oluşturucu) System.Collections.IDictionary bir SortedList<TKey,TValue>ile nasıl kullanılacağını ve özelliğin özelliğinden SortedList<TKey,TValue>.Item[] farklı yollarını gösterir.
Örnekte, özelliği gibi SortedList<TKey,TValue>.Item[] özelliğin SortedList<TKey,TValue>.IDictionary.Item[] de mevcut bir anahtarla ilişkili değeri değiştirebileceği ve belirtilen anahtar sıralı listede değilse yeni bir anahtar/değer çifti eklemek için kullanılabileceğini gösterir. Örnekte ayrıca özelliğinden SortedList<TKey,TValue>.Item[] farklı olarak, özelliğin SortedList<TKey,TValue>.IDictionary.Item[] sıralanmış listede değilse key
bir özel durum oluşturmadığını ve bunun yerine null başvuru döndürdüğünü gösterir. Son olarak, örnek, özelliği alma işleminin SortedList<TKey,TValue>.IDictionary.Item[] doğru veri türü değilse key
null başvuru döndürdüğünü ve özelliğin doğru veri türü değilse key
bir özel durum oluşturduğunu gösterir.
Kod örneği, yöntemi için IDictionary.Add sağlanan çıktı da dahil olmak üzere daha büyük bir örneğin parçasıdır.
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
Açıklamalar
Bu özellik, anahtar türüne atanamayan bir türdeyse key
TKey
SortedList<TKey,TValue>döndürür.null
Bu özellik, aşağıdaki söz dizimini kullanarak koleksiyondaki belirli bir öğeye erişme olanağı sağlar: myCollection[key]
.
Özelliğini, sözlükte Item[] bulunmayan bir anahtarın değerini ayarlayarak yeni öğeler eklemek için de kullanabilirsiniz; örneğin, myCollection["myNonexistentKey"] = myValue
. Ancak, belirtilen anahtar sözlükte zaten varsa, özelliğini ayarlamak Item[] eski değerin üzerine yazar. Buna karşılık, Add yöntemi mevcut öğeleri değiştirmez.
C# dili, özelliğini uygulamak IDictionary.Item[] yerine dizin oluşturucuları tanımlamak için bu anahtar sözcüğü kullanır. Visual Basic, aynı dizin oluşturma işlevini sağlayan varsayılan bir özellik olarak uygular IDictionary.Item[] .
Bu özelliğin değerini almak bir O(log n
) işlemidir; burada n olur Count. anahtarı zaten içindeyse SortedList<TKey,TValue>özelliğinin ayarlanması bir O(log n
) işlemidir. Anahtar listede değilse, özelliği ayarlamak sıralanmamış veriler için bir O(n
) işlemi veya listenin sonuna yeni öğe eklendiğinde O(log n
) işlemidir. Ekleme yeniden boyutlandırmaya neden oluyorsa işlem O()n
olur.