我来自我会做的PHP
$um['Im a string'][1] = 3;
对于 2d 关联数组,其中第一个键是字符串,第二个键是整数,值也是整数。我尝试在 C++ 中做同样的事情。这是我的尝试:
// experiment.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <unordered_map>
#include <vector>
#include <string>
using std::vector;
using std::string;
using std::unordered_map;
int _tmain(int argc, _TCHAR* argv[])
{
unordered_map <string,vector<int,int>> um;
um["Im a string"][1] = 3;
printf("Out: %d", um["Im a string"][1]);
return 0;
}
显然它的语法不正确;