gpt4 book ai didi

java - 在单独的类 Java 中调用时 ArrayList 为空

转载 作者:行者123 更新时间:2023-11-29 03:11:53 29 4
gpt4 key购买 nike

我有一个类,它启动一个 String 类型的数组列表。然后我将一些虚拟数据添加到这个数组中。

public class Main {

public static void main(String[] args)
{
Home h = new Home();
h.add();
}
}

public class Home
{
public ArrayList<String> Group_Customers= new ArrayList<String>();
public void add()
{
String[] group1 = {"0", "Mr", "Smith", "Andrew"}
for(int i = 1; i < group1.length; i++)
{
Group_Customers.add(group1[i]);
}
Add_Booking a = new Add_Booking();
a.Add();
}
}

在一个单独的类(class)。然后我调用这个 arraylist 并向它添加更多数据。然而,数组在这个不同的类中是空的

public class Add_Booking
{
String Title;
String Firstname;
String Surname;
public void add_Data
{
Title = "Mr";
Firstname = "Bob";
Surname = "Gallow";

save_Data();
}

public void save_Data
{
Home h = new Home();
String[] responses = {Title, Firstname, Surname};

for(int i = 1; i < responses.length; i++)
{
h.Group_Customers.add(responses[i]);
}
System.out.println(h.Group_Customers);
}
}

--从 Home 类输出没有 group1 测试的响应。我在这个不同的类中指的是 Group_Customers 错误吗?所有帮助表示赞赏。谢谢

最佳答案

当调用 Home h = new Home(); 时,您使用默认构造函数实例化了一个新的 Home

如果您希望数组包含数据,请确保在构造函数中添加虚拟数据。此外,实际代码不会编译,您不能只在类主体中抛出方法调用。

你会得到这样的东西:

public class Home
{
//Declare the List
public ArrayList<String> Group_Customers = null;

//Default constructor
public Home()
{
//Instantiate and add dummy data
Group_Customers = new ArrayList<String>();
Group_Customers.add("test");
}
}

public class Add_Booking
{
public static void main(String args[])
{
//Construct a new home with default constructor.
Home h = new Home();

//Add new data
h.Group_Customers.add("new data");

//Display List content (should display test and new data)
System.out.println(h.Group_Customers);
}
}

请注意,按照惯例,变量应以每个单词的小写字母和大写字母开头,因此您应将变量重命名为 groupCustomers

关于java - 在单独的类 Java 中调用时 ArrayList 为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28883968/

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