我在处理列表时遇到了一个问题,我有三个名为 UserInf、userData、userProcess 的类,我使用 UserInf 类创建了一个通用列表,我需要将该列表设置为另一个列表,该列表在类 userprocess 中,这是我的示例代码*
public class UserInf
{
private List<Data> pData;
private String userId;
public void setData(List<Data> pData)
{
this.pData=pData;// Need to assign the fpData
}
public List<Data> getData()
{
return this.pData;
}
public void setUserId(String userId)
{
this.userId = userId;
}
public String getUserId()
{
return userId;
}
在我的其他类用户数据中,我使用 userInf 创建了列表,添加添加这样的值
List<UserInf> userInformation=new ArrayList<UserInf>();
UserInf userInfo=new UserInf();
userInfo.setUserId(userid);
userInfo.setData(pdata);
userInformation.add(userInfo);//up to this working fine
}
在我的其他类 userprocees 中,我想将 userInformation 列表分配给另一个列表,我为 userInf 类创建对象并获取属性并分配给我的新列表
List<UserInf> userProcessList=new ArrayList<UserInf>();
UserInf userProcess=new UserInf();
userProcess.getData();
userProcess.getUserId();
userProcessList.add(userProcess);//problem is here
但这不起作用如何在java中将列表分配给另一个这样的列表