标签: c++ templates
我正在尝试使用用户定义的类'A'和模板std :: less。根据{{1}}的要求,我还有一个覆盖<运算符的函数。此代码未编译。
<
std::less
答案 0 :(得分:11)
成功
bool operator<(const A& ref) const{ return a<ref.a; }