📅  最后修改于: 2022-03-11 14:44:57.139000             🧑  作者: Mango
std::vector array;
// First argument is an iterator to the element BEFORE which you will insert:
// In this case, you will insert before the end() iterator, which means appending value
// at the end of the vector.
array.insert(array.end(), { 1, 2, 3, 4, 5, 6 });