gpt4 book ai didi

Java : Creating an array from an for loop

转载 作者:行者123 更新时间:2023-12-02 04:04:33 24 4
gpt4 key购买 nike

我有一个数组中的文件列表

String[] myStringArray = {"C:\file1.txt","C:\file2.txt","C:\file3.txt"};

为此,我运行一个 for 循环来执行命令来获取值

for (String extpath: myStringArray ) {
command to get the metadata
}

输出:修改修改的未修改

我能够使上述工作正常进行。现在我需要比较输出的每个元素,看看它们是否相同或不同。

是否应该再次将其创建为数组然后进行比较?请指点最简单的方法

最佳答案

如果您希望将循环每次迭代的输出存储在数组中,则需要常规 for 循环,因为您需要数组的索引(除非添加本地计数器变量)。

String[] output = new String[myStringArray.length];
for (int i = 0; i < myStringArray.length; i++) {
String extpath = myStringArray[i];
output[i] = command to get the metadata
}

关于Java : Creating an array from an for loop,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34491954/

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