在下面的第一个代码片段中,我试图根据输入 std::remove_if 函数的静态条件函数从成员函数内的向量中删除一个元素。我的问题是无法在条件函数中访问 removeVipAddress 方法中的输入参数 uuid。您认为我应该在这里做什么才能根据名为 uuid 的输入参数从向量中删除一个项目?谢谢。注意:这是之前在从 std:: 向量中删除项目中解释的后续问题
片段 1(代码)
void removeVipAddress(std::string &uuid)
{
struct RemoveCond
{
static bool condition(const VipAddressEntity & o)
{
return o.getUUID() == uuid;
}
};
std::vector<VipAddressEntity>::iterator last =
std::remove_if(
mVipAddressList.begin(),
mVipAddressList.end(),
RemoveCond::condition);
mVipAddressList.erase(last, mVipAddressList.end());
}
片段 2(编译输出)
$ g++ -g -c -std=c++11 -Wall Entity.hpp
Entity.hpp: In static member function ‘static bool ECLBCP::VipAddressSet::removeVipAddress(std::string&)::RemoveCond::condition(const ECLBCP::VipAddressEntity&)’:
Entity.hpp:203:32: error: use of parameter from containing function
Entity.hpp:197:7: error: ‘std::string& uuid’ declared here