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>>
ParameterDeskripsi
TTipe kunci.
VTipe nilai.

Metode

MetodeDeskripsi
DictionaryPtr()Menginisialisasi penunjuk null.
DictionaryPtr(const SharedPtr<Dictionary<T, V>>&)Mengonversi tipe pointer.
operator[](const X&) constOperator akses untuk bekerja dengan konversi tipe kunci.
operator[](const T&) constOperator akses.

Lihat Juga