gpt4 book ai didi

Java-按给定顺序迭代for循环

转载 作者:搜寻专家 更新时间:2023-10-31 08:26:41 25 4
gpt4 key购买 nike

在 Bash 中,如果我想以给定的顺序遍历数组的元素,我可以这样做:

    for i in 1 3 8 2 5 9; do
array[i] = <some_algorithm_based_value>
done

是否有可能在 Java 中做相同(或相对相同)的事情?

最佳答案

你可以写

for (int i: Arrays.asList(1, 3, 8, 2, 5, 9)) {
doSomethingWith(array[i]);
}

附录:Live demo

关于Java-按给定顺序迭代for循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18296143/

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