SortedDictionary<TKey,TValue>.IDictionary.Item[Object] 属性

定义

获取或设置具有指定键的元素。

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

参数

key
Object

要获取的元素的键。

属性值

Object

如果 null 不在字典中或 key 的类型属于不能分配给 key 的键类型 TKey,则为具有指定键的元素或 SortedDictionary<TKey,TValue>

实现

例外

key 上声明的默认值为 null

正在分配值,并且 key 属于不能分配给 SortedDictionary<TKey,TValue> 的键类型 TKey 的类型。

示例

下面的代码示例演示如何在IDictionary.Item[]接口SortedDictionary<TKey,TValue>的 C#) System.Collections.IDictionary中使用属性 (索引器,以及属性与SortedDictionary<TKey,TValue>.Item[]属性的不同之处。

该示例显示,与该属性一样 SortedDictionary<TKey,TValue>.Item[]SortedDictionary<TKey,TValue>.IDictionary.Item[] 该属性可以更改与现有键关联的值,如果指定的键不在字典中,则可以用于添加新键/值对。 该示例还显示,与属性不同 SortedDictionary<TKey,TValue>.Item[]SortedDictionary<TKey,TValue>.IDictionary.Item[] 如果该 key 属性不在字典中,则不会引发异常,而是返回 null 引用。 最后,该示例演示如果属性不是正确的数据类型,则获取 SortedDictionary<TKey,TValue>.IDictionary.Item[] 该属性将返回 null 引用 key ,如果不是正确的数据类型,则设置该属性将引发异常 key

代码示例是为 IDictionary.Add 该方法提供的大型示例的一部分,包括输出。

using System;
using System.Collections;
using System.Collections.Generic;

public class Example
{
    public static void Main()
    {
        // Create a new sorted dictionary of strings, with string keys,
        // and access it using the IDictionary interface.
        //
        IDictionary openWith = new SortedDictionary<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 sorted dictionary of strings, with string keys,
        ' and access it using the IDictionary interface.
        '
        Dim openWith As IDictionary = _
            New SortedDictionary(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

注解

此属性提供使用以下 C# 语法访问集合中的特定元素的功能: myCollection[key] (myCollection(key) Visual Basic) 。

还可以使用 Item[] 属性通过设置字典中不存在的键的值来添加新元素;例如 myCollection["myNonexistentKey"] = myValue。 但是,如果字典中已存在指定的键,设置该 Item[] 属性将覆盖旧值。 相反,该方法 IDictionary.Add 不会修改现有元素。

C# 语言 使用此关键字来 定义索引器,而不是实现 IDictionary.Item[] 属性。 Visual Basic 将 IDictionary.Item[] 实现为默认属性,该属性提供相同的索引功能。

获取此属性的值是 O (日志 n) 操作;设置该属性也是 O (日志 n) 操作。

适用于

另请参阅