gpt4 book ai didi

java - 驱动程序类中的数组列表方法不起作用

转载 作者:行者123 更新时间:2023-12-01 10:06:54 24 4
gpt4 key购买 nike

好吧,我有一个类,其中有一个使用 Arraylist 的方法,但我不确定如何在我的驱动程序类中测试它。

感谢您给我的任何帮助

在我的驱动程序类中,我写了这个,但它不起作用:

otherClass test = new otherClass();
test.showLists(theArraylist);

这是我的类(class)方法:

public static void showLists(ArrayList list){ 
for (int i = 0; i < list.size(); i++){
System.out.println(list.get(i));
}
}

最佳答案

由于您将“otherClass”中的方法定义为静态,因此您可以简单地将其调用为 otherClass.showLists(theArrayList);,而无需初始化 otherClass 的对象。了解有关静态方法的更多信息 here 。或者,您可以从 showLists 方法中删除 static 关键字并保持驱动程序代码不变。

此外,您应该养成按照 Java 约定以大写字母开头的类名的习惯。

关于java - 驱动程序类中的数组列表方法不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36380348/

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