How do I remove objects from an array in Java?

前端 未结 20 1373
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:45

    See code below

    ArrayList a = new ArrayList<>(Arrays.asList(strings));
    a.remove(i);
    strings = new String[a.size()];
    a.toArray(strings);
    

提交回复
热议问题