int a = 10;
int* b = &a;
std::map<int, int*> testList;
testList.insert(std::pair<int, int*>(1, std::move(b)));
auto it = testList.find(1);
int* temp = const_cast<int*>(&it->first);
*temp = 4;
auto it1 = testList.find(4);
cout << *it1->second << endl;
int a = 10;
int* b = &a;
std::map<int, int*> testList;
testList.insert(std::pair<int, int*>(1, std::move(b)));
auto it = testList.find(1);
cout << b << endl;
auto temp = it->second;
testList.erase(1);
testList.insert(std::pair<int, int*>(2, temp));
cout << testList.size() << endl;
cout << testList.find(2)->second << endl;
目前想到的就是这两种方法,经过以上的代码检测可以使用,不知道还有没有什么其他更好的方法。
|