gpt4 book ai didi

c++相当于列表的python追加方法

转载 作者:太空狗 更新时间:2023-10-29 23:47:11 26 4
gpt4 key购买 nike

我正在学习来自 python 背景的 c++。

我想知道有没有一种方法可以将项目附加到 C++ 中的列表?

myList = []
for i in range(10):
myList.append(i)

在 C++ 中是否有类似的东西可以对数组执行?

最佳答案

你需要一个 vector ,做这样的事情:

#include <vector>

void funct() {
std::vector<int> myList;
for(int i = 0; i < 10; i++)
myList.push_back(10);
}

参见 http://cplusplus.com/reference/stl/vector/获取更多信息。

关于c++相当于列表的python追加方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6771274/

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