gpt4 book ai didi

c++ - 数组上基于范围的 for 循环

转载 作者:行者123 更新时间:2023-11-28 01:39:00 25 4
gpt4 key购买 nike

我正在尝试做类似的事情:

int iArray[16];
int iOtherArray[16];
for ( auto &i: iArray )
{
iOtherArray[i] = iArray[i];
}

其中 for 循环遍历数组的组件数量,而不是每个单独的组件。我是否正确理解了基于范围的 for 循环的用法?

最佳答案

您可以只使用标准库中的复制算法:

std::copy(array, array+16, otherArray);

关于c++ - 数组上基于范围的 for 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48131811/

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