How to add new elements to an array?

后端 未结 18 1912
误落风尘
误落风尘 2020-11-22 04:55

I have the following code:

String[] where;
where.append(ContactsContract.Contacts.HAS_PHONE_NUMBER + \"=1\");
where.append(ContactsContract.Contacts.IN_VISIB         


        
18条回答
  •  轮回少年
    2020-11-22 05:17

    Size of array cannot be modified. If you have to use an array, you can use:

    System.arraycopy(src, srcpos, dest, destpos, length); 
    

提交回复
热议问题