Partager via


CSimpleArray::Find

Recherche un élément du tableau.

int Find( 
   const T& t  
) const;

Paramètres

  • t
    L'élément pour lequel la recherche.

Valeur de retour

Retourne l'index de l'élément trouvé, ou -1 si l'élément est introuvable.

Exemple

// 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);   

Configuration requise

Header: atlsimpcoll.h

Voir aussi

Référence

CSimpleArray, classe