1

我尝试编译一些与以下代码非常相似的代码:

#include <string>
#include <unordered_map>

class A{
};

int main(int argc, char* argv[]){
  std::unordered_map<std::string, std::reference_wrapper<const A>> stringToRef;
  A a;
  const A& b = a;
  stringToRef.insert(std::make_pair("Test", b));
  return 0;
}

但无法弄清楚,为什么它不编译。我很确定,相同的代码在 MS Visual Studio 2012 上编译良好 - 但在 Visual Studio 2013 上,它报告以下编译错误:

error C2280: std::reference_wrapper<const A>::reference_wrapper(_Ty &&): attempting to reference a deleted function

我试图在我的班级中添加复制、移动、赋值运算符 - 但无法摆脱这个错误。我怎样才能准确地找出这个错误指的是哪个已删除的函数?

4

1 回答 1

2

你想存储 a std::reference_wrapper<const A>,所以你可以使用[std::cref][1]直接从a

#include <functional>
#include <string>
#include <unordered_map>
#include <utility>

class A{
};

int main(int argc, char* argv []){
  std::unordered_map<std::string, std::reference_wrapper<const A>> stringToRef;
  A a;
  stringToRef.insert(std::make_pair("Test", std::cref(a)));
  return 0;
}

这适用于GCC/Clang+libstdc++Clang+libc++和 MSVS 2013(本地测试)。

于 2015-05-08T14:16:04.420 回答