无论如何我可以有多维数组例如:listarray string,int,int in android?? 在 Java/C++ 中使用 Map & Set 是很有可能的。
问问题
43 次
1 回答
0
使用字段制作您自己的容器,很好地解释其用途:
class PersonData {
public int age;
public int id;
public String name }
并列出它:
List<PersonData> dataList = new ArrayList<PersonData>();
通过以下方式访问您的字段:
dataList.get(5).age = 11;
正如 Egor 在评论中所说,如果您在这种特定情况下不需要极端性能,则将这些字段设置为受保护并创建 setter 和 getter 是一种很好的做法。
于 2013-01-26T11:30:29.587 回答