Kelas 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>>
| Parameter | Deskripsi |
|---|
| T | Tipe kunci. |
| V | Tipe nilai. |
Metode
| Metode | Deskripsi |
|---|
| DictionaryPtr() | Menginisialisasi penunjuk null. |
| DictionaryPtr(const SharedPtr<Dictionary<T, V>>&) | Mengonversi tipe pointer. |
| operator[](const X&) const | Operator akses untuk bekerja dengan konversi tipe kunci. |
| operator[](const T&) const | Operator akses. |
Lihat Juga