How do I remove objects from an array in Java?

前端 未结 20 1374
Happy的楠姐
Happy的楠姐 2020-11-22 01:20

Given an array of n Objects, let\'s say it is an array of strings, and it has the following values:

foo[0] = \"a\";
foo[1]          


        
20条回答
  •  情深已故
    2020-11-22 01:44

    You can use external library:

    org.apache.commons.lang.ArrayUtils.remove(java.lang.Object[] array, int index)
    

    It is in project Apache Commons Lang http://commons.apache.org/lang/

提交回复
热议问题