System::Collections::Generic::ListPtr classe

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>

Metodi

MetodoDescrizione
ListPtr(std::nullptr_t)Inizializza un puntatore nullo.
ListPtr(const SharedPtr<List<T>>&)Inizializza un puntatore alla lista specificata.
operator==(std::nullptr_t) constVerifica se il puntatore List è nullo.
operator[](int)Accessor.
operator[](int) constAccessor.

Vedi anche