gpt4 book ai didi

java - TextUtils.join 整数 ArrayList

转载 作者:太空宇宙 更新时间:2023-11-03 12:38:43 26 4
gpt4 key购买 nike

我有 3 个 boolean 值,指示是否应将 int 添加到列表中,然后我想在此列表上使用 TextUtils.join()

我应该如何进行?

ArrayList<Integer> types = new ArrayList<Integer>();

if (m_bWithA) {
types.add(this.TYPE_A); //TYPE_A is an int
}
if (m_bWithB) {
types.add(this.TYPE_B);
}
if (m_bWithC) {
types.add(this.TYPE_C);
}

TextUtils.join("|", types);

但是它说我们只能在 Object[] 上使用 TextUtils.join()

我应该使用其他函数还是不同类型的对象?

最佳答案

使用 TextUtils.join(types.toArray())

关于java - TextUtils.join 整数 ArrayList,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12404651/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com