クラスを作成してArrayListに入れようとしています
import java.util.*;
public class UserGroup
{
ArrayList<User> userList = new ArrayList<User>();
public UserGroup()
{
}
public void addSampleData()
{
for (int i = 1; i < 11; i++)
{
String iConvert = "User" + Integer.toString(i);
System.out.println(iConvert);
userList.add(iConvert(iConvert, iConvert, iConvert));
}
}
}
ループ内で文字列を使用して、各オブジェクトと呼ぶものを変更しようとしていました
以下は、コンストラクターが iConverts(iConverts、iConverts、iConverts) の理由である 3 つの文字列を必要とする User クラスです。
public class User {
/*
* contains a username, usertype and names (constructor uses these)
* methods within getUsername, getUserType, getName and setUserType
*/
String username;
String userType;
String name;
public User(String username, String userType, String name)
{
}
protected String getUsername()
{
return username;
}
protected String getUserType()
{
return userType;
}
protected String getName()
{
return name;
}
protected void setUserType(String newType)
{
userType = newType;
}
}