how to add value to array java code example
Example 1: java add element to existing array
String[] rgb = new String[] {"red", "green"};
String[] rgb2 = new String[rgb.length + 1];
System.arraycopy(rgb, 0, rgb2, 0, rgb.length);
rgb2[rgb.length] = "blue";
rgb = rgb2;
Example 2: how to add a number to an array in java
List<Integer> myList = new ArrayList<Integer>();
myList.add(5);
myList.add(7);
Example 3: how to add the last area of an array in java
-- how to add objects using an array
car redCar = new Car("Red");
car Garage [] = new Car [100];
Garage[0] = redCar;