Header Ads Widget

Responsive Advertisement

Ticker

6/recent/ticker-posts

Remove element from array (Java)

*************************************************
COMPLETE SOURCE CODE FOR : RemoveElementFromAnArray.java
*************************************************
public class RemoveElementFromAnArray
{
public static void main(String[]args)
{
 //Now we want to remove last element,"crocodile"
 String[]animal={"lion","tiger","elephant","crocodile"};

 //Step 1:Create a temp array with sizeArrayAnimal-1
 String[]temp=new String[animal.length-1];

 //Step 2:Copy element from "lion" to "elephant" into array temp
 System.arraycopy(animal,0,temp,0,(animal.length-1));

 //Make animal array point to temp array
 animal=temp;

 //Print all element in animal
 int temp2=0;
 while(temp2!=animal.length)
 {
  System.out.println(animal[temp2]);
  temp2=temp2+1;
 }
}
}


*************************************************
JUST COMPILE AND EXECUTE IT
*************************************************