開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
gcc
問題(Question):
map<int,vector<data> >中要如何取用資料?
data是一個struct
map<int,vector<data> > user;
data temp;
user[].push_back(temp)
因為自己在GOOGLE中找到的都是如何置入資料
而我自己已經先用上面的方式將資料建立
但是我不知道要如何用iterator印出他?
map<int,vector<data> >::iterator i;
使用(*i).first可以正確取用
但是(*i).second之後就不知道要如何寫才能知道裡面的資料?
謝謝高手解答