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);
要求
Header: atlsimpcoll.h