次の方法で共有


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

参照

関連項目

CSimpleArray クラス