System::Collections::Generic::ListPtr kelas

ListPtr class

List pointer with access operators. 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>class ListPtr : public System::SmartPtr<List<T>>

Metode

MetodeDeskripsi
ListPtr(std::nullptr_t)Menginisialisasi penunjuk null.
ListPtr(const SharedPtr<List<T>>&)Menginisialisasi penunjuk ke daftar yang ditentukan.
operator==(std::nullptr_t) constMemeriksa apakah penunjuk List null.
operator[](int)Aksesor.
operator[](int) constAksesor.

Lihat Juga