我有一个Boolean类型的ArrayList,需要在我尝试使用时作为boolean []进行操作:
AlertDialog builder;
builder.setMultiChoiceItems(items, checkedItems, new DialogInterface.OnMultiChoiceClickListener() { ... });
然而,虽然我可以创建一个布尔对象数组,但我找不到一种有效的方法将这个对象数组转换为构造函数所需的基本数组(我能想到的唯一方法是迭代对象)数组并构建一个新的基本数组)。
我正从ArrayList中检索我的Object数组,如下所示:
final Boolean[] checkedItems = getBoolList().toArray(new Boolean[getBoolList().size()]);
我的ArrayList有什么用吗?或者是否有一个我缺少的明显的转换/转换方法?
任何帮助表示赞赏!
答案 0 :(得分:10)
你没有遗漏任何东西,唯一的方法是迭代列表我害怕
(未经测试)示例:
private boolean[] toPrimitiveArray(final List<Boolean> booleanList) {
final boolean[] primitives = new boolean[booleanList.size()];
int index = 0;
for (Boolean object : booleanList) {
primitives[index++] = object;
}
return primitives;
}
编辑(根据Stephen C的评论): 或者您可以使用第三方工具,例如Apache Commons ArrayUtils:
http://commons.apache.org/lang/api-2.5/org/apache/commons/lang/ArrayUtils.html
答案 1 :(得分:5)
使用Guava,您可以执行boolean[] array = Booleans.toArray(getBoolList());
。