9

次のコードを使用して、配列から要素を削除しています。

 arr_fav = {"1","2","3"};
 for(int i= 0;i<arr_fav.length;i++)
 {
     if(current_id == Integer.parseInt(arr_fav[i]))
     {
        arr_fav[1] = null;
     } }

これを行うことで、arr_fav = {"1",null,"3"} のような配列を取得しています。しかし、arr_fav = {"1","3"} のようにしたいです。 .これを解決するのを手伝ってください。

4

14 に答える 14

19

arraylistを使用する方が良い

arr_fav = {"1","2","3"};
List<String> numlist = new ArrayList<String>();
for(int i= 0;i<arr_fav.length;i++)
{
 if(current_id == Integer.parseInt(arr_fav[i]))
 {
   // No operation here 
 }
 else
 {
     numlist.add(arr_fav[i]);
 }
}
 arr_fav = numlist .toArray(new String[numlist .size()]);
于 2012-12-06T08:46:03.433 に答える
10

あなたはそうしない。

配列はサイズ変更できません。

新しい(より小さい)配列を作成し、保持したい要素をそこにコピーする必要があります。

より良いアイデアは、List動的な実装を使用することです。ArrayList<Integer>たとえば。

于 2012-12-06T08:42:26.467 に答える
5

Java の配列はdynamicArrayListではありません。代わりにan を使用できます。

于 2012-12-06T08:42:18.933 に答える
2

これは仕事をするでしょう...

List x = new ArrayList(Arrays.asList(arr_fav));
x.remove(String.valueOf(current_id));
arr_fav = x.toArray();
于 2012-12-06T11:25:47.110 に答える
2

必要な配列要素を新しい配列にコピーできます

 j = 0;
 for(int i= 0;i<arr_fav.length;i++)
  {
   if(current_id != Integer.parseInt(arr_fav[i]))
 {
    arr_new[j++] = arr_fav[i];
 } }
于 2012-12-06T08:44:59.223 に答える
2

ArrayList配列の代わりに を使用します。要素の削除、動的サイズなどの機能をサポートしています。

ArrayList<String> arr_fav_list = new ArrayList<String>();
arr_fav_list.addAll(arr_fav);
arr_fav_list.remove(1);
于 2012-12-06T08:46:58.077 に答える
1

try this:

    ArrayList<String> rm = new ArrayList<String>();
    rm .addAll(arr_fav);
    rm .remove(1);
于 2012-12-06T08:56:27.890 に答える
1

このようなことを試してください

int[] intAry = new int[5]; 

// populate array with 0 to 4  

for (int i=0; i < intAry.length; i++) {  

  intAry[i] = i;  

}  

List<Integer> aList  = Arrays.asList(intAry); // change the array to a list of integers  

aList.remove(3); // remove the item 3 (4th index)  

aList.toArray(intAry); // convert list back to array  

System.out.println("size of array=" + intAry.size()); // output array size should be 4  

for (int i=0; i < intAry.length; i++) {  

  System.out.print(intAry[i] + " "); // should output "0 1 2 4 "  

}  
于 2012-12-06T08:44:24.987 に答える
0

セットする

    array_fav[1]=array_fav[2];
    array_fav[2]=null;
于 2012-12-06T08:52:01.603 に答える
0
    String[] arr_fav =
    { "1", "2", "3" };

    List<String> myList = Arrays.asList(arr_fav);

            String currentId = String.valueOf(current_id);
    for (int i = 0; i < arr_fav.length; i++)
    {
        if (arr_fav[i].equals(currentId))
        {
            myList.remove(i);
        }
    }
于 2012-12-06T08:52:58.127 に答える
0

For simple arrays like this you can't do this in this way

here is the full sample code for this

int current_id = 2;
        String[] arr_fav = { "1", "2", "3" };
        for (int i = 0; i < arr_fav.length; i++) {
            if (current_id == Integer.parseInt(arr_fav[i])) {
                String[] arr_fav_tem = new String[arr_fav.length - 1];
                arr_fav[1] = null;
                int counter = 0;
                for (int j = 0; j < arr_fav.length; j++) {
                    if (arr_fav[j] != null) {

                        arr_fav_tem[counter] = arr_fav[j];
                        counter++;
                    }

                }

                arr_fav = arr_fav_tem;

            }
        }

        for (int i = 0; i < arr_fav.length; i++) {
            System.out.println(arr_fav[i]);
        }
于 2012-12-06T08:56:42.043 に答える
0

次の方法を使用してそれを行うことができます..

public static String[] removeElements(String[] input, String deleteMe) {
List result = new LinkedList();

for(String item : input)
    if(!deleteMe.equals(item))
        result.add(item);

return result.toArray(input);
}

または、使用できますArrayUtils

array = ArrayUtils.removeElement(array, element)
于 2012-12-06T08:42:41.257 に答える
0
 private String[] removeItem(String[] names,
            int position) {

        ArrayList<String> al_temp=new ArrayList<String>();// temporary ArrayList

    for(int i=0;i<names.length;i++)
        {
            al_temp.add(names[i]);
        }

        al_temp.remove(position);
        names= new String[al_temp.size()];//array cleared with new size



        for(int i=0;i<al_temp.size();i++)
        {
            names[i]=al_temp.get(i);
        }


        return names;
    }
于 2015-09-02T07:48:34.727 に答える
0

このメソッドをコピーします。

private static String[] deleteElement(String stringToDelete, String[] array) {
    String[] result = new String[array.length];
    int index = 0;

     ArrayList<String> rm = new ArrayList<String>();

    for(int i = 0; i < array.length; i++) {
        rm.add(array[i]);
    }
    for(int i = 0; i < array.length; i++) {
        if(array[i].equals(poistettava)) {
            index = i;
        }
    }
    rm.remove(index);

    result = rm.toArray(new String[rm.size()]);

    return result;
}

要素を削除するには:

String[] array = {"1", "2", "3"};
array = deleteElement("3", array);
于 2018-01-17T16:31:39.977 に答える