还在苦苦敲代码开发APP?你out啦! 试试积木搭建APP吧~

std::vector find查找方法

来源:清泛原创     2016-06-07 11:03:17    人气:     我有话说( 0 人参与)

std::vector<std::string> vecTest;std::string findStr("test");bool found = std::find(vecTest.begin(), vecTest.end(), findStr...

std::vector<std::string> vecTest;

std::string findStr("test");
bool found = std::find(vecTest.begin(), vecTest.end(), findStr) != vecTest.end();


注意:.begin(),.end()一定不要忘记了后面的括号,否则报如下错误:
error C3867: “std::vector<_Ty>::end”: 函数调用缺少参数列表;请使用“&std::vector<_Ty>::end”创建指向成员的指针

vector find

注:本文为本站或本站会员原创优质内容,版权属于原作者及清泛网所有,
欢迎转载,转载时须注明版权并添加来源链接,谢谢合作! (编辑:admin)
分享到: