我的程序很简单。我有一个有 2 种方法的类。我有另一个类,其中调用了这两种方法。当第一个方法被调用时,arraylist 被初始化并填充了一些对象,然后调用第二个方法简单地告诉 arraylist 的大小并打印出来。我不明白为什么在调用第二种方法时我总是得到一个空的。但是,当我在第一种方法中打印数组时,我得到了大小及其所有元素。Arraylist 是公开的.. 请看一下代码..
在第 1 课
Items initialize = new Items();
initialize.init();
Items view = new Items();
view.viewItems();
在第 2 班
public class Items {
public String id;
public String name;
public String details;
public String stock;
public ArrayList<Items> myList = new ArrayList<Items>();
public void init(){
Items item1 = new Items();
item1.id = "0023";
item1.name = "Round Table";
item1.details = "Brown, high quality wood blah blah..";
item1.stock = "34";
myList.add(item1);
if(myList.size()==0){
System.out.println("There are no products to display");
}
Iterator<Items> iterator = myList.iterator();
System.out.println(myList.size());
System.out.println("Products Available:");
while(iterator.hasNext()){
Items current = iterator.next();
System.out.println("\nID: " +current.id + "\nTitle: "+current.name+"\nDescreption: "+current.details+"\nAmount: "+current.stock);
}
public void viewItems() {
int size = myList.size();
if(myList.size()==0){
System.out.println("There are no products to display");
}
Iterator<Items> iterator = myList.iterator();
System.out.println(myList.size());
System.out.println("Products Available:");
while(iterator.hasNext()){
Items current = iterator.next();
System.out.println("\nID: " +current.id + "\nTitle: "+current.name+"\nDescreption: "+current.details+"\nAmount: "+current.stock);
}
因此,结果是,当调用第一种方法时,我可以看到添加或删除产品的项目和尺寸编号(已经进行了很多实验),而在调用另一种方法时,我总是得到 0 的尺寸和空数组。我已经尝试过使用公共字符串,并且方法在调用时会更改字符串。所以我猜它与 ArrayList.. 谢谢!