gpt4 book ai didi

c++ - 如何在 C++ 中存储从 Vector 中弹出的项目

转载 作者:太空宇宙 更新时间:2023-11-04 11:24:48 25 4
gpt4 key购买 nike

我正在制作一个程序,其中我必须结合使用 vector 。但问题是我需要存储从 vector 中弹出的项目的值。 vector 的 popback() 并没有真正帮助保存,因为它不带任何参数并且返回类型为 void。非常感谢您的帮助。

最佳答案

试试这个例子

std::vector<int> v = { 1, 2, 3, 4, 5 };

while ( !v.empty() )
{
int x = v.back();
v.pop_back();
std::cout << x << ' ';
}

std::cout << std::endl;

有几种方法可以访问 vector 的元素,例如 back()、front()、operator []、at()、*it,其中它是一个迭代器。

关于c++ - 如何在 C++ 中存储从 Vector 中弹出的项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27079998/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com