Udostępnij za pośrednictwem


CArray::SetAtGrow

Ustawia element tablicy pod określonym indeksem.

void SetAtGrow( 
   INT_PTR nIndex, 
   ARG_TYPE newElement  
);

Parametry

  • nIndex
    Indeks całkowitą jest większa niż lub równa 0.

  • ARG_TYPE
    Parametr szablonu, określając typ elementów w tablicy.

  • newElement
    Element, który ma zostać dodany do tej tablicy.A NULL wartość jest dozwolona.

Uwagi

Tablica powiększa się automatycznie w razie potrzeby (górna granica jest dostosowane do nowych elementów).

Przykład

// example for CArray::SetAtGrow
CArray<CPoint,CPoint> ptArray;

ptArray.Add(CPoint(10,20));   // Element 0
ptArray.Add(CPoint(30,40));   // Element 1 
// Element 2 deliberately skipped
ptArray.SetAtGrow(3, CPoint(50,60));   // Element 3     

Wymagania

Nagłówek: afxtempl.h

Zobacz też

Informacje

Klasa CArray

Diagram hierarchii

CArray::GetAt

CArray::SetAt

CArray::ElementAt

[CArray::operator]