我正在尝试插入对我的对象的引用,但出现大量错误。我需要在自定义对象中修改什么,才能成功插入?
代码如下所示:
#include <map>
#include <iostream>
#include <string>
using namespace std;
class A
{
public:
A()
{
cout << "default constructor" << endl;
}
A(A & a)
{
cout << "copy constructor" << endl;
}
A & operator=(A & a)
{
cout << "assignment operator" << endl;
return *this;
}
~A()
{
cout << "destructor" << endl;
}
};
int main()
{
map<string, A&> m1;
A a;
m1["a"] = a;
return 0;
}
更新:
可以使用参考创建地图,例如
map<string, A&>
错误在于使用 [] 运算符。通过进行以下更改,代码可以工作
typedef map<string, A&> mymap; int main() { mymap m1; A a; cout << &a << endl; m1.insert(make_pair<string, A&>("a", a)); mymap::iterator it = m1.find("a"); A &b = (*it).second; cout << &b << endl; // same memory address as a return 0; }