How do I add elements to an empty vector in a loop?(如何在循环中向空向量添加元素?)
问题描述
我正在尝试在循环内创建一个空向量,并且希望在每次将某些内容读入该循环时向该向量添加一个元素.
I am trying to create an empty vector inside a loop, and want to add an element to the vector each time something is read in to that loop.
#include <iostream>
#include <vector>
using namespace std;
int main()
{
std::vector<float> myVector();
float x;
while(cin >> x)
myVector.insert(x);
return 0;
}
但这给了我错误信息.
推荐答案
您需要使用 std::vector::push_back()
代替:
You need to use std::vector::push_back()
instead:
while(cin >> x)
myVector.push_back(x);
// ^^^^^^^^^
而不是 std::vector::insert()
,正如你在链接中看到的,它需要一个迭代器来指示你想要插入元素的位置.
and not std::vector::insert()
, which, as you can see in the link, needs an iterator to indicate the position where you want to insert the element.
另外,作为 @Joel 评论了什么,您应该删除向量变量定义中的括号.
Also, as what @Joel has commented, you should remove the parentheses in your vector variable's definition.
std::vector<float> myVector;
和不是
std::vector<float> myVector();
通过执行后者,您会遇到 C++ 的最烦人的解析问题.
By doing the latter, you run into C++'s Most Vexing Parse problem.
这篇关于如何在循环中向空向量添加元素?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在循环中向空向量添加元素?
基础教程推荐
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01