我想知道是否有可能将一个带有参数的构造函数传递给一个比较函数。
例如:
class cmp
{
private:
string args_;
public:
cmp(const string& s):args_(s){}
bool operator()(const int & a, const int& b)
return a<b;
}
int main(int argc, char * argv[])
{
string s(argv[1]);
multiset<int, cmp(s)> ms; //can i do this?
}
答案 0 :(得分:4)
std::set
和std::multiset
有构造函数,它们使用比较器对象:
explicit set (const Compare& comp = Compare(),
const Allocator& = Allocator());
Compare
对象的类型是std::set
或std::multiset
模板的第二个参数。