System::Collections::Generic::DictionaryPtr sınıfı
DictionaryPtr class
Dictionary pointer class with operator overloads. This type is a pointer to manage other object’s deletion. It should be allocated on stack and passed to functions either by value or by const reference.
template<typename T,typename V>class DictionaryPtr : public System::SmartPtr<T0>
| Parametre | Açıklama |
|---|
| T | Anahtar türü. |
| V | Değer türü. |
Yöntemler
| Yöntem | Açıklama |
|---|
| DictionaryPtr() | Null işaretçiyi başlatır. |
| DictionaryPtr(const SharedPtr<Dictionary<T, V>>&) | İşaretçi tipini dönüştürür. |
| operator[](const X&) const | Anahtar tipi dönüşümüyle çalışmak için erişim operatörü. |
| operator[](const T&) const | Erişim operatörü. |
Ayrıca Bakınız