System::Collections::Generic::DictionaryPtr Klasse
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>
| Parameter | Beschreibung |
|---|
| T | Schlüsseltyp. |
| V | Werttyp. |
Methoden
| Methode | Beschreibung |
|---|
| DictionaryPtr() | Initialisiert Nullzeiger. |
| DictionaryPtr(const SharedPtr<Dictionary<T, V>>&) | Konvertiert den Zeigertyp. |
| operator[](const X&) const | Zugriffsoperator, um mit der Schlüsseltyp‑Konvertierung zu arbeiten. |
| operator[](const T&) const | Zugriffsoperator. |
Siehe auch