如何创建一个可以存储多个对象的arraylist类?

时间:2013-03-15 02:00:58

标签: java class arraylist 2d

我是一名自学者。目前,我正在制作一个GUI项目,我需要一个matrice类型的数据库。

我想学习如何创建一个可以在arraylist中存储多个对象的类。

这是我的示例代码。请注意,这只是我的尝试。此代码尚未最终确定,并且无效。

感谢您的帮助。

    import java.util.ArrayList;
    import java.util.List;

}}

1 个答案:

答案 0 :(得分:11)

我认为更好的方法是创建一个用户信息类来存储像这样的特定用户的信息。

// I made them all public but this might not be a good idea!
class UserInfo {
    String user;
    String pass;
    String secretCode;
}

然后将它放入ArrayList。

ArrayList <UserInfo> InfoList = new ArrayList<UserInfo> ();    

然后,对于您当前的方法,您可以

// Not so sure what you want to do in this method... so you get to figure out that yourself!
public void userInternalDatabase (UserInfo info) {

    this.user = info.user;
    this.pass = info.pass;
    this.secretCode = info.secretCode;
}

public void addUser(String i, String j, String k) {
    UserInfo newUser = new UserInfo();
    newUser.user = i;
    newUser.pass = j;
    newUser.secretCode = k;
    InfoList.add(newUser);
}

public Object findUsername(String a)  
{    
    for (int i=0; i <InfoList.size(); i++) {
        if (InfoList.get(i).user.equals(a)){
             return "This user already exists in our database.";
        }
    }
    return "User is not founded."; // no Customer found with this ID; maybe throw an exception
}