CSimpleArray::Find
Localizar um elemento na matriz.
int Find(
const T& t
) const;
Parâmetros
- t
O elemento a qual pesquisar.
Valor de retorno
Retorna o índice de um elemento encontrado, ou -1 se o elemento não for encontrado.
Exemplo
// 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);
Requisitos
Cabeçalho: atlsimpcoll.h