1. 程式人生 > >獲取map key或者value元素的地址

獲取map key或者value元素的地址

如下是map的, vector 就更簡單了   , 

 int* p = (int*)it;//錯誤

int*p=(int*)&(*it);//正確
map<int,int>ar;
int*getPoint()
{
autoit=ar.begin();
it++;
int*p=(int*)&(it->second);
returnp;
}