为什么set::iterator不能用作map的key?

发布于 2024-11-28 15:59:02 字数 419 浏览 0 评论 0原文

我有一段这样的代码:

set<string>::iterator it1;
set<string>::iterator it2;
pair<set<string>::iterator,bool> ret;

set<string> s;
ret = s.insert("bbbb1");
it1 = ret.first;

ret = s.insert("bbbb2");
it2 = ret.first;

map<set<string>::iterator, set<string>::iterator> m;

m.insert(make_pair(it1,it2));

但最后一行“m.insert(make_pair(it1,it2));”失败的..

I have a piece of code like this:

set<string>::iterator it1;
set<string>::iterator it2;
pair<set<string>::iterator,bool> ret;

set<string> s;
ret = s.insert("bbbb1");
it1 = ret.first;

ret = s.insert("bbbb2");
it2 = ret.first;

map<set<string>::iterator, set<string>::iterator> m;

m.insert(make_pair(it1,it2));

but the last line "m.insert(make_pair(it1,it2));" failed..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

执手闯天涯 2024-12-05 15:59:02

std::set 迭代器不是随机访问迭代器,因此它们不具有可比性。

std::map 中用作键的类型必须能够使用 严格弱排序。默认情况下,std::map 使用 < 对键进行排序。您可以通过在定义 std::map 的类型时提供比较器来更改此行为。您可能希望使用迭代器指向的对象执行一些关系比较。

std::set iterators are not random access iterators so they are not less-than comparable.

The type that you use as a key in a std::map must be able to be sorted using a strict weak ordering. By default, std::map uses < to order keys. You can change this behavior by providing a comparator when you define the type of the std::map. You'll probably want to perform some relational comparison using the object pointed to by the iterator.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文