我有向量:
vector<int[2]> storeInventory; //storeInventory[INDEX#]{ITEMNUM, QUANTITY}
我想使用该push_back()
方法将新数组添加到库存向量中。与此类似的东西:
const int ORANGE = 100001;
const int GRAPE = 100002
storeInventory.push_back({GRAPE,24});
storeInventory.push_back{ORANGE, 30};
但是,当我尝试使用上面的语法时,我得到了错误Error: excpeted an expression
。我正在尝试的事情是不可能的,还是我只是以错误的方式去做?