首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >点参数%1没有从'std::pair<const std::for_each,int>‘到'std::pair<point,int>&’的已知转换

点参数%1没有从'std::pair<const std::for_each,int>‘到'std::pair<point,int>&’的已知转换
EN

Stack Overflow用户
提问于 2018-05-28 17:43:59
回答 1查看 1.4K关注 0票数 2

我不能理解,因为这两种情况看起来很相似,在第一个for_each中,我无法获得对pair的引用,而在第二个例子中,我得到了pair的引用,没有大惊小怪。有人能给我解释一下吗?

代码语言:javascript
复制
#include <unordered_map>
#include <cstring>
#include <algorithm>
#include <iostream>

struct table_info_t {
    char name[32] = {0};
    int posx;
    int posy;

    table_info_t(const char *name, int posx, int posy) : posx(posx), posy(posy) {
        strncpy(this->name, name, 31);
    }
};

struct point {
    int posx;
    int posy;

    point(int posx, int posy) : posx(posx), posy(posy) { }
};

size_t hashstruct(const char* hptr, size_t size) {
    size_t h = 31;
    for (size_t i = 0; i < size; i++) {
        h = (h + *hptr) * 31;
        hptr++;
    }
    return h;
}

#define MAP_OPERATORS(typ)\
namespace std {\
\
    template<>\
    struct hash<typ> {\
        std::size_t operator()(const typ &k) const { return hashstruct((const char*)&k, sizeof(typ)); }\
    };\
\
    bool operator==(const typ& one, const typ& other) { return memcmp(&one, &other, sizeof(typ)) == 0; }\
};

MAP_OPERATORS(point); //hash structure and operator==
MAP_OPERATORS(table_info_t); //hash structure and operator==

int main(int argc, char** argv) {
    std::unordered_map<point, int> sp;
    sp[point(3, 4)] = 7;
    std::for_each(sp.begin(), sp.end(),
                  [](std::pair<point, int> pair) {
                      std::cout << pair.first.posx << "+" <<pair.first.posy << "=" << pair.second << "\n";
                  });

    std::unordered_map<table_info_t, const char *> m;
    m[table_info_t("make my day", 3, 14)] = "make my day 3,14";

    std::for_each(m.begin(), m.end(),
                  [](std::pair<const table_info_t, const char * >& pair)
                  {
                      std::cout << pair.first.name << pair.first.posx << pair.first.posy << " " << pair.second << "\n";
                  }
    );

    return 0;
}

这两种结构差别不大,但是在编译这段代码时,我得到了这个错误:

代码语言:javascript
复制
In file included from .../4.8.2/include/c++/4.8.2/algorithm:62:0,
                 from .../src/main/c/hashtable.cpp:10:
.../4.8.2/include/c++/4.8.2/bits/stl_algo.h: In instantiation of '_Funct std::for_each(_IIter, _IIter, _Funct) [with _IIter = std::__detail::_Node_iterator<std::pair<const point, int>, false, true>; _Funct = main(int, char**)::__lambda0]':
.../src/main/c/hashtable.cpp:45:24:   required from here
.../4.8.2/include/c++/4.8.2/bits/stl_algo.h:4417:14: error: no match for call to '(main(int, char**)::__lambda0) (std::pair<const point, int>&)'
  __f(*__first);
              ^
.../src/main/c/hashtable.cpp:43:24: note: candidates are:
                       [](std::pair<point, int> &pair) {
                        ^
In file included from .../4.8.2/include/c++/4.8.2/algorithm:62:0,
                 from .../src/main/c/hashtable.cpp:10:
.../4.8.2/include/c++/4.8.2/bits/stl_algo.h:4417:14: note: void (*)(std::pair<point, int>&) <conversion>
  __f(*__first);
              ^
.../4.8.2/include/c++/4.8.2/bits/stl_algo.h:4417:14: note:   candidate expects 2 arguments, 2 provided
.../src/main/c/hashtable.cpp:43:53: note: main(int, char**)::__lambda0
                       [](std::pair<point, int> &pair) {
                                                     ^
.../src/main/c/hashtable.cpp:43:53: note:   no known conversion for argument 1 from 'std::pair<const point, int>' to 'std::pair<point, int>&'   

我需要删除引用。但是,引用pair对于第二个for_each中的编译器来说是非常好的。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2018-05-28 18:33:13

当你在std::unordered_map<Key, Value>上迭代时,

std::pair<const KEY, VALUE>上迭代

在第二种情况下,您使用std::pair<const KEY, VALUE>&,所以它没有问题。您甚至可以添加const,因为您不需要更改这一对:const std::pair<const KEY, VALUE>&

在第一种情况下,您使用另一个类型std::pair<KEY, VALUE>&。可以从std::pair<const KEY, VALUE>构建std::pair<KEY, VALUE>。但是,临时值不能绑定到非常量左值引用。所以使用std::pair<KEY, VALUE>&是无效的。使用std::pair<KEY, VALUE>是有效的,但会进行额外的复制。详情请参见unexpected copies with foreach over a map

如果你可以访问C++14,你可以使用一个通用的lambda来简化它:

代码语言:javascript
复制
[](const auto& p) {
    std::cout << p.first.posx << "+" << p.first.posy << "=" << p.second << "\n";
});

此外,还可以使用基于范围的for循环替换std::for_each (即使在C++11中也是如此):

代码语言:javascript
复制
for(const auto& p : sp) {
    std::cout << p.first.posx << "+" << p.first.posy << "=" << p.second << "\n";
};
票数 5
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/50563426

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档