gpt4 book ai didi

c++ - 初始化基本类型数组

转载 作者:太空狗 更新时间:2023-10-29 20:37:23 25 4
gpt4 key购买 nike

创建基本类型的数组时,例如:

double *aPtr = new double[10];

有没有办法将其初始化为特定值? ((ex)-1)

创建新类是唯一的方法吗?

最佳答案

fill_n 函数可以是您要查找的内容。它将为数组的前 n 个值分配特定值。

double *aPtr = new double[10];

std::fill_n(aPtr, 10, -1); // Fill the aPtr array with the value -1 for the 10 first values.

我不知道在声明时用一个相同的值直接填充它的具体方法。

关于c++ - 初始化基本类型数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34962315/

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