私は持っています:map<vector<int>, vector<int>> info
私は検索をしなければなりません。私は試します:
Key[0]=1;
Key[1]=3;
Key[2]=1;
test=info.find(key);
ここKey
で、 およびtest
は次のように定義されます。vector<int> Key (3,0)
およびvector<int> test (2,0)
。
しかし、これはコンパイル エラーを返します: error: no match for 'operator=' in 'test =
. これの理由は何ですか?