gpt4 book ai didi

c++ - 如何向指针数组添加元素?

转载 作者:行者123 更新时间:2023-11-27 23:54:05 25 4
gpt4 key购买 nike

我试图通过编写一些示例来理解 C++ 中的指针。我尝试创建一个指针数组,但当我尝试向其添加整数时无法正常工作。我想将 0 到 9 的整数添加到指针数组并打印它。

int *array;
array = new int[10];

for(int i=0; i<10; i++){
*array[i] = i;
cout<<*array<<endl;

}

最佳答案

以下将执行您所描述的操作:

#include <iostream>

int main()
{
int* array = new int[10];

for (int i = 0; i < 10; ++i)
{
array[i] = i;
std::cout << array[i] << std::endl;
}

delete [] array;

return 0;
}

然而在现代 C++ 中,惯用的解决方案是这样的:

#include <iostream>
#include <vector>

int main()
{
std::vector<int> v;

for (int i = 0; i < 10; ++i)
{
v.push_back(i);
std::cout << v[i] << std::endl;
}

return 0;
}

关于c++ - 如何向指针数组添加元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43930111/

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