CArray::Append
int Append( const CArray& src );将另一个数组追加过来.
void Copy( const CArray& src );
复制数组,已经内容将会被覆盖.CArray::InsertAt
void InsertAt( int nIndex, ARG_TYPE newElement, int nCount = 1 );throw( CMemoryException );
void InsertAt( int nStartIndex, CArray* pNewArray );
throw( CMemoryException );
插入一个元素(或另一个数组)到数组.
CArray::RemoveAt
void RemoveAt( int nIndex, int nCount = 1 );删除另一个元素.
CArray::operator [ ]
TYPE& operator []( int nIndex );TYPE operator []( int nIndex ) const;
通过索引设置或取得另一个元素.