Después de de nuestra extensa recopilación de información resolvimos esta aprieto que presentan algunos de nuestros lectores. Te brindamos la solución y esperamos servirte de gran ayuda.
Ejemplo 1: cómo agregar a un array en java
importjava.util.Arrays;classArrayAppendpublicstaticvoidmain(String args[])int[] arr =10,20,30;System.out.println(Arrays.toString(arr));
arr =Arrays.copyOf(arr, arr.length +1);
arr[arr.length -1]=40;// Assign 40 to the last elementSystem.out.println(Arrays.toString(arr));
Ejemplo 2: java agregar elemento a existente array
//original arrayString[] rgb =newString[]"red","green";//new array with one more lengthString[] rgb2 =newString[rgb.length +1];//copy the old in the new arraySystem.arraycopy(rgb,0, rgb2,0, rgb.length);//add element to new array
rgb2[rgb.length]="blue";//optional: set old array to new array
rgb = rgb2;
Ejemplo 3: cómo agregar objetos en array Java
car redCar =newCar("Red");
car Garage[]=newCar[100];Garage[0]= redCar;
valoraciones y reseñas
Nos puedes animar nuestro ensayo añadiendo un comentario y puntuándolo te damos la bienvenida.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)