gpt4 book ai didi

c++ - 是否可以将带参数的构造函数传递给 C++ 中的集合?

转载 作者:搜寻专家 更新时间:2023-10-31 01:15:56 25 4
gpt4 key购买 nike

我想知道是否有可能将一个接受比较函数参数的构造函数传递到一个集合中。

例如这样的事情:

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?
}

最佳答案

std::setstd::multiset 有构造函数,它接受比较器对象:

explicit set (const Compare& comp = Compare(),
const Allocator& = Allocator());

Compare 对象的类型是 std::setstd::multiset 模板的第二个参数。

关于c++ - 是否可以将带参数的构造函数传递给 C++ 中的集合?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9559655/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com