System::Collections::Generic::StackPtr classe
StackPtr class
Stack pointer. 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 StackPtr : public System::SmartPtr<T0>
| Parametro | Descrizione |
|---|
| T | Tipo di elemento. |
Metodi
| Metodo | Descrizione |
|---|
| StackPtr() | Costruisce un puntatore nullo. |
| StackPtr(const SharedPtr<Stack<T>>&) | Costruisce un puntatore che fa riferimento a uno stack specifico. |
Vedi anche