CSimpleArray::Find
배열에서 요소를 찾습니다.
int Find(
const T& t
) const;
매개 변수
- t
검색할 요소입니다.
반환 값
요소를 찾을 수 없는 경우는 찾은 요소 또는-1의 인덱스를 반환 합니다.
예제
// 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);
요구 사항
헤더: atlsimpcoll.h