find函数在关联式容器和string的使用:
关联式容器,若存在返回的是元素存在的迭代器,不存在则返回尾后迭代器
string返回的是第一个字符在目标串中匹配的位置 如“213 ”和“12134”
The position of the first character of the first match.
If no matches were found, the function returns string::npos.(npos值为-1)
例如:mapA.find(str1) str.find(c,pos) 从pos位置查找字符c
find() 函数本质上是一个模板函数,用于在指定范围内查找和目标元素值相等的第一个元素。
如下为 find() 函数的语法格式:
InputIterator find (InputIterator first, InputIterator last, const T& val);
其中,first 和 last 为输入迭代器,[first, last) 用于指定该函数的查找范围;val 为要查找的目标元素。
正因为 first 和 last 的类型为输入迭代器,因此该函数适用于所有的序列式容器。
另外,该函数会返回一个输入迭代器,当 find() 函数查找成功时,其指向的是在 [first, last) 区域内查找到的第一个目标元素;如果查找失败,则该迭代器的指向和 last 相同。