56

以下代码无法在最近的编译器(g++-5.3、clang++-3.7)上构建。

#include <map>
#include <functional>
#include <experimental/string_view>

void f()
{
    using namespace std;
    using namespace std::experimental;
    map<string, int> m;
    string s = "foo";
    string_view sv(s);
    m.find(sv);
}

clang 返回的错误:

error: no matching member function for call to 'find'
    m.find(sv);
    ~~^~~~

但是不find应该能够使用可比较的类型吗?Cppreference 提到了以下重载:

template< class K > iterator find( const K& x );

同样的错误发生在boost::string_ref.

4

1 回答 1

70

您需要明确指定一个透明比较器(如std::less<>):

std::map<std::string, int, std::less<>> m;
//                         ~~~~~~~~~~^

std::map<K,V>默认其比较器为std::less<K>(即不透明的),并且因为([associative.reqmts]/p13):

成员函数模板findcountlower_boundupper_boundequal_range不应参与重载决议,除非限定 ID Compare::is_transparent有效并表示类型 (14.8.2)。

模板成员函数find不是一个可行的候选者。

添加了关联容器的异构比较查找。最初的提议冒着破坏现有代码的风险。例如:

c.find(x);

在语义上等价于:

key_type key = x;
c.find(key);

特别是 和 之间的转换xkey_type发生一次,并且在实际调用之前

key异构查找取代了这种转换,有利于和之间的比较x。这可能会导致现有代码的性能下降(由于每次比较之前的额外转换)甚至中断编译(如果比较运算符是成员函数,它将不会对左侧操作数应用转换):

#include <set>
#include <functional>

struct A
{
    int i;

    A(int i) : i(i) {}
};

bool operator<(const A& lhs, const A& rhs)
{
    return lhs.i < rhs.i;
}

int main()
{
    std::set<A, std::less<>> s{{1}, {2}, {3}, {4}};
    s.find(5);
}

演示

为了解决这个问题,通过添加链接问题中描述的透明比较器的概念来选择加入新行为。

于 2016-02-20T16:23:20.240 回答