System::Collections::Generic::ListPtr sınıfı

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<T0>

Yöntemler

YöntemAçıklama
ListPtr(std::nullptr_t)Null işaretçiyi başlatır.
ListPtr(const SharedPtr<List<T>>&)Belirtilen listeye işaretçiyi başlatır.
operator==(std::nullptr_t) constKontrol eder List işaretçisinin null olup olmadığını.
operator[](int)Erişimci.
operator[](int) constErişimci.

Ayrıca Bakınız