共用方式為


search (STL/CLR)

搜尋序列中目標範圍內,第一次出現「符合指定序列項目」的項目,或是「在指定序列中符合二進位述詞指定」的項目。

template<class _FwdIt1, class _FwdIt2> inline
    _FwdIt1 search(_FwdIt1 _First1, _FwdIt1 _Last1,
        _FwdIt2 _First2, _FwdIt2 _Last2);
template<class _FwdIt1, class _FwdIt2, class _Pr> inline
    _FwdIt1 search(_FwdIt1 _First1, _FwdIt1 _Last1,
        _FwdIt2 _First2, _FwdIt2 _Last2, _Pr _Pred);

備註

這個函式的行為與 STL 函式 search 相同。 如需詳細資訊,請參閱search

需求

標頭: <cliext/algorithm>

命名空間: cliext

請參閱

參考

algorithm (STL/CLR)