标签: c++ vector
我想知道是否有更短的方法将两个参数推送到vector
std::vector<vector> vec; vec.push_back(1); vec.push_back(2);
我想在一行中写下这两条push_back行。 有可能吗?