共用方式為


find_first_of (STL/CLR)

搜尋第一次出現的任何保持在目標範圍內的多個值或第一次出現的二進位述詞實際上就相當於指定的項目與指定的使用幾個項目。

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

備註

這個函式產生相同的行為做為 STL 函式的 find_first_of。 如需詳細資訊,請參閱find_first_of

需求

標題: <cliext/演算法>

命名空間: cliext

請參閱

參考

algorithm (STL/CLR)