Condividi tramite


CObList::CObList

Crea un elenco vuoto del puntatore CObject.

CObList(
   INT_PTR nBlockSize = 10 
);

Parametri

  • nBlockSize
    La granularità di allocazione della memoria per l'estensione dell'elenco.

Note

Quando l'elenco aumenta, è allocata la memoria in unità delle voci nBlockSize.Se un'allocazione di memoria non riesce, CMemoryException viene generato.

Nella tabella seguente vengono illustrate altre funzioni membro che sono simili a CObList::CObList.

Classe

Funzione membro

CPtrList

CPtrList( INT_PTR nBlockSize = 10 );

CStringList

CStringList( INT_PTR nBlockSize = 10 );

Esempio

Di seguito è riportato un elenco CObjectnella classe derivata da CAge utilizzato in tutti gli esempi di raccolta:

// Simple CObject-derived class for CObList and other examples
class CAge : public CObject
{
    DECLARE_SERIAL( CAge )
private:
    int   m_years;
public:
    CAge() { m_years = 0; }
    CAge(int age) { m_years = age; }
    CAge(const CAge& a) { m_years = a.m_years; } // Copy constructor
    void Serialize(CArchive& ar);
    void AssertValid() const;
    const CAge& operator=(const CAge& a)
    {
        m_years = a.m_years; return *this;
    }
    BOOL operator==(CAge a)
    {
        return m_years == a.m_years;
    }
#ifdef _DEBUG
    void Dump(CDumpContext& dc) const
    {
        CObject::Dump(dc);
        dc << m_years; 
    }
#endif
};

Di seguito è riportato un esempio di utilizzo del costruttore CObList :

CObList list(20);  // List on the stack with blocksize = 20.

CObList* plist = new CObList; // List on the heap with default 
                              // blocksize.         

Requisiti

Header: afxcoll.h

Vedere anche

Riferimenti

Classe di CObList

Grafico della gerarchia