开发者社区> 问答> 正文

如何将新元素添加到数组?

我有以下代码:

String[] where; where.append(ContactsContract.Contacts.HAS_PHONE_NUMBER + "=1"); where.append(ContactsContract.Contacts.IN_VISIBLE_GROUP + "=1"); 这两个附录未编译。那将如何正常工作?

展开
收起
保持可爱mmm 2020-01-16 14:37:49 343 0
1 条回答
写回答
取消 提交回答
  • 数组的大小无法修改。如果需要更大的数组,则必须实例化一个新数组。

    更好的解决方案是使用ArrayList可以根据需要增长的容器。ArrayList.toArray( T[] a )如果您需要此形式的数组,该方法将为您提供数组。

    List where = new ArrayList (); where.add( ContactsContract.Contacts.HAS_PHONE_NUMBER+"=1" ); where.add( ContactsContract.Contacts.IN_VISIBLE_GROUP+"=1" ); 如果需要将其转换为简单数组...

    String[] simpleArray = new String[ where.size() ]; where.toArray( simpleArray ); 但是,使用数组执行的大多数操作也可以使用此ArrayList执行:

    // iterate over the array for( String oneItem : where ) { ... }

    // get specific items where.get( 1 ); 问题来源于stack overflow

    2020-01-16 14:38:01
    赞同 展开评论 打赏
问答地址:
问答排行榜
最热
最新

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载