-1
我需要有一個映射,其中鍵是一個字符串類型,並且該值是一個2d向量。我試過map<string, vector<vector<double> > > myMap;
但似乎沒有工作。在C++中使用2d向量作爲值類型
我需要有一個映射,其中鍵是一個字符串類型,並且該值是一個2d向量。我試過map<string, vector<vector<double> > > myMap;
但似乎沒有工作。在C++中使用2d向量作爲值類型
下面的代碼編譯罰款,我用g ++ 4.5.0:
#include <string>
#include <map>
#include <vector>
int main()
{
std::map<std::string, std::vector<std::vector<double> > > map;
return 0;
}
也許你犯了一個語法錯誤?
Vectorception 0_0 –
你能更具體嗎?你會得到編譯器錯誤,運行時錯誤等? –
什麼不起作用?編譯錯誤? –
什麼不行?發佈一些代碼,顯示拋出錯誤和錯誤消息本身的行。 – Praetorian