我在尝试传递我的列表并使用该.get(index)
方法时遇到了很多麻烦。它一直说“不兼容的数据类型”,但我不知道如何让数组列表获取字符串。你能帮我吗?这是我的方法:
//a mutator method to store the password list
public void setPasswordList(String newPasswordList)
{
ArrayList<String> pL = new ArrayList<String>(); //intalize array list store it into a list
while(true)
{
pL.add(getUserPassword());
passwordList = newPasswordList;
}
吸气剂方法:
public String getPasswordList(){
return passwordList;
}