0
我有以下多維向量多維向量指針
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");
你可能想要通過引用來獲取整個事物,並使用點而不是箭頭。 – chris
@chris對不起編輯。 – mister