我有以下多维向量
int main()
{
vector< vector<string> > tempVec;
someFunction(&tempVec);
}
void someFunction(vector< vector<string> > *temp)
{
//this does not work
temp[0]->push_back("hello");
}
当我有向量指针时,如何将数据推送到向量中?下面的代码不起作用。
temp[0]->push_back("hello");