这是我第一次与双人合作,完全困惑。如何初始化一对以将其插入地图?
我应该为此包含一些标准库吗?
#include <string>
#include <map>
using namespace std;
class Roads
{
public:
map< pair<string,string>, int > Road_map;
void AddRoad( string s, string d )
{ int b = 2 ; Road_map.insert( pair<s,d>, b) ; } //pair<s,d> is wrong here.
};