gpt4 book ai didi

java - 如何将数组文件发送到其他类

转载 作者:行者123 更新时间:2023-12-01 16:41:58 24 4
gpt4 key购买 nike

如何将存储在数组中的文件发送到其他类?我已经尝试过这段代码,但不起作用。

public class abc {
....
String [] indexFiles = new String[100];

public abc (){
indexFiles [0]=image1.txt;
indexFiles [1]=image1.txt;
....
draw = new drawing (indexFiles(0)); // I got error in this code
draw = new drawing (indexFiles.get(0)); // I also tried this code but it give me error as well.
}

}

最佳答案

您的绘图类采用字符串数组还是仅采用单个字符串?

如果需要数组,请使用:

draw = new drawing(indexFiles);

如果需要单个字符串,请使用:

draw = new drawing(indexFiles[0]);

要访问数组中的单个值,请使用 [] 括号,而不是圆括号。

附注:“get(0)”方法用于像 ArrayList 这样的集合:

List<String> stringList = new ArrayList<String>();
stringList.add("MyString");
System.out.println(stringList.get(0));

关于java - 如何将数组文件发送到其他类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/676125/

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