我有一个容器对象:
R Container;
R 是类型list<T*>
或vector<T*>
我正在尝试编写以下函数:
template<typename T, typename R>
T& tContainer_t<T, R>::Find( T const item ) const
{
typename R::const_iterator it = std::find_if(Container.begin(), Container.end(), [item](const R&v) { return item == v; });
if (it != Container.end())
return (**it);
else
throw Exception("Item not found in container");
}
尝试该方法时(v 是我的类的对象)
double f = 1.1;
v.Find(f);
我明白了binary '==' : no operator found which takes a left-hand operand of type 'const double' (or there is no acceptable conversion)
我对 lambda 表达式语法以及我应该在那里写什么感到困惑,但找不到任何友好的解释。
怎么了 ?10 倍。