如何为arraylist添加数字
Posted
技术标签:
【中文标题】如何为arraylist添加数字【英文标题】:How to add numbers for arraylist 【发布时间】:2018-09-16 01:56:27 【问题描述】:我需要为 arraylist 添加数字我有一个 listview 复选框,我选择了我可以获得数字 1 2 3 5 25 24 的项目,我需要添加到 arraylist.This image
https://ibb.co/nmOU7H
还有我的代码
String result = "";
for (Product p : boxAdapter.getBox())
if (p.aBoolean)
result += p.id;
【问题讨论】:
而且我需要像这家公司一样发布数据[1,2,3,4] 欢迎来到 Stack Overflow。您的问题尚未达到社区标准,将被否决。请编辑您的问题以包含您尝试过的内容、评论中的信息,并且不要包含图片。 还有什么问题? 如果需要添加数字,为什么要将结果存储为字符串? @Joe C 我不知道怎么加请举个例子 【参考方案1】:只需创建一个列表并向其中添加项目,
List<Integer> checkedList = new ArrayList<Integer>();
for (Product p : boxAdapter.getBox())
if (p.aBoolean)
checkedList.add(p.id);
我建议您在开始编码之前先学习基础知识,这将在这种情况下为您提供帮助。
希望这是您正在寻找的解决方案。
【讨论】:
以上是关于如何为arraylist添加数字的主要内容,如果未能解决你的问题,请参考以下文章
如何为 List<List<List<Integer>>> nums = new ArrayList<List<List<Integer>&
添加到 ArrayList 对象的 ListIterator
java中编写代码1到十的数字添加到Arraylist集合中,遍历该集合求出十个数字的总和以及平均值