在C++中,你可以使用push_back
函數在數組末尾添加元素。如果你使用的是C++標準庫中的vector
容器,push_back
函數可以將元素添加到vector的末尾。以下是一個示例代碼:
#include <iostream>
#include <vector>
int main() {
std::vector<int> arr = {1, 2, 3, 4, 5};
arr.push_back(6); // 在數組末尾添加元素6
for (int i : arr) {
std::cout << i << " ";
}
return 0;
}
輸出結果為:1 2 3 4 5 6
。在這個例子中,我們使用了push_back
函數將元素6添加到了vector的末尾。