我刚刚遇到一个奇怪的错误,说发现不是标准的成员.
error C2039: ‘find’ : is not a member of ‘std’
error C3861: ‘find’: identifier not found
基本上,我想查找是否可以在向量中找到一个字符串
任何想法为什么会发生这种情况?代码辅助告诉我在std中找到方法.
所以这基本上是我做的:
#include "OperatorUtil.h" #include <iostream> #include <string> #include <stdlib.h> #include <math.h> #include <sstream> using namespace SAEConfig; namespace operatorUtil { bool isIn(const Filter filter,const SearchKey key) { bool result = false; string dimensionStr = key.dimensions.getValue(filter.getFilterKey()); if(filter.getFilterValues().size()>0) { vector<string> vstr= filter.getFilterValues(); std::vector<string>::iterator it; // Iterator it = std::find(vstr.begin(),vstr.end(),dimensionStr); //ERROR LINE // Check do we have the object in the queue if(it == vstr.end()) { result =true; } } return result; } }