System::Collections::Generic::DictionaryPtr क्लास
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<Dictionary<T, V>>
| पैरामीटर | विवरण |
|---|
| T | कुंजी प्रकार। |
| V | वैल्यू टाइप। |
विधियाँ
| विधि | विवरण |
|---|
| DictionaryPtr() | नल पॉइंटर को इनिशियलाइज़ करता है। |
| DictionaryPtr(const SharedPtr<Dictionary<T, V>>&) | पॉइंटर प्रकार को परिवर्तित करता है। |
| operator[](const X&) const | कुंजी प्रकार रूपांतरण के साथ काम करने के लिए एक्सेस ऑपरेटर। |
| operator[](const T&) const | एक्सेस ऑपरेटर। |
संबंधित देखें