CSimpleArray::Find

Cerca un elemento nella matrice.

int Find(
   const T& t 
) const;

Parametri

  • t
    l'elemento per il quale da cercare.

Valore restituito

Restituisce l'indice dell'elemento trovato, oppure -1 se non viene trovato.

Esempio

// Create an array of floats and search for a particular element

CSimpleArray<float> fMyArray;

for (int i = 0; i < 10; i++)
   fMyArray.Add((float)i * 100);

int e = fMyArray.Find(200);
if (e == -1)
   _tprintf_s(_T("Could not find element\n"));
else
   _tprintf_s(_T("Found the element at location %d\n"), e);   

Requisiti

Header: atlsimpcoll.h

Vedere anche

Riferimenti

Classe di CSimpleArray