Créer un tableau :
String[] a = new String[5]; String[] b = {“a”,”b”,”c”, “d”, “e”}; String[] c = new String[]{“a”,”b”,”c”,”d”,”e”};
1 Imprimer le tableau
Nous utilisons souvent des boucles for ou certains itérateurs pour imprimer tous les éléments du tableau. , Mais on peut aussi changer de posture.
int array[] = {1,2,3,4,5}; System.out.println(array); //[I@1234be4e String arrStr = Arrays.toString(array); System.out.println(array); //[1,2,3,4,5];
2. Créez ArrayList
String[] array = { “a”, “b”, “c”, “d”, “e” }; ArrayList<String> arrayList = new ArrayList<String>(Arrays.asList(array)); System.out.println(arrayList); // [a, b, c, d, e]
3. Vérifiez s'il contient une certaine valeur
int array[] = {1,2,3,4,5}; boolean isContain= Arrays.asList(array).contains(5); System.out.println(isContain); // true
4. Connectez deux tableaux
int[] array1 = { 1, 2, 3, 4, 5 }; int[] array2 = { 6, 7, 8, 9, 10 }; // Apache Commons Lang library int[] combinedIntArray = ArrayUtils.addAll(array1, array2);
5. line Déclarez un tableau
method(new String[]{"a", "b", "c", "d", "e"});
6. Inversez le tableau
int[] intArray = { 1, 2, 3, 4, 5 }; // Apache Commons Lang library ArrayUtils.reverse(intArray); System.out.println(Arrays.toString(intArray)); //[5, 4, 3, 2, 1]
7 Supprimez un élément
int[] intArray = { 1, 2, 3, 4, 5 }; int[] removed = ArrayUtils.removeElement(intArray, 3);//create a new array System.out.println(Arrays.toString(removed));
8. Convertissez-le en set
Set<String> set = new HashSet<String>(Arrays.asList(new String[]{"a", "b", "c", "d", "e"})); System.out.println(set); //[d, e, b, c, a]
9. Convertir un tableau Convertir une liste en tableau
String[] stringArray = { "a", "b", "c", "d", "e" }; ArrayList<String> arrayList = new ArrayList<String>(Arrays.asList(stringArray)); String[] stringArr = new String[arrayList.size()]; arrayList.toArray(stringArr);
10. Formez les éléments du tableau en une chaîne
// Apache common lang String j = StringUtils.join(new String[] { "a", "b", "c" }, ", "); System.out.println(j); //a, b, c
Pour plus de connaissances connexes, veuillez faire attention à la colonne tutoriel de base Java
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!