How to add new elements to an array?

后端 未结 18 1720
误落风尘
误落风尘 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:25

    There is another option which i haven't seen here and which doesn't involve "complex" Objects or Collections.

    String[] array1 = new String[]{"one", "two"};
    String[] array2 = new String[]{"three"};
    String[] array = new String[array1.length + array2.length];
    System.arraycopy(array1, 0, array, 0, array1.length);
    System.arraycopy(array2, 0, array, array1.length, array2.length);
    

提交回复
热议问题