Erstellen Sie ein Array:
String[] a = new String[5]; String[] b = {“a”,”b”,”c”, “d”, “e”}; String[] c = new String[]{“a”,”b”,”c”,”d”,”e”};
1. Drucken Sie das Array
Wir verwenden oft for-Schleifen oder einige Iteratoren, um alle Elemente des Arrays auszudrucken , Aber wir können auch die Haltung ändern.
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. ArrayList erstellen
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. Überprüfen Sie, ob es einen bestimmten Wert enthält
int array[] = {1,2,3,4,5}; boolean isContain= Arrays.asList(array).contains(5); System.out.println(isContain); // true
5. In einem line Deklarieren Sie ein Array
int[] array1 = { 1, 2, 3, 4, 5 }; int[] array2 = { 6, 7, 8, 9, 10 }; // Apache Commons Lang library int[] combinedIntArray = ArrayUtils.addAll(array1, array2);
6. Invertieren Sie ein Element
method(new String[]{"a", "b", "c", "d", "e"});
8. Konvertieren Sie es in set
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]
9. Array konvertieren Liste in Array konvertieren
int[] intArray = { 1, 2, 3, 4, 5 }; int[] removed = ArrayUtils.removeElement(intArray, 3);//create a new array System.out.println(Arrays.toString(removed));
10. Bilden Sie die Array-Elemente in einen String
Set<String> set = new HashSet<String>(Arrays.asList(new String[]{"a", "b", "c", "d", "e"})); System.out.println(set); //[d, e, b, c, a]
Weitere Informationen zu diesem Thema finden Sie in der Spalte
Java Basic Tutorial🎜>
Das obige ist der detaillierte Inhalt von10 häufig verwendete Methoden für Java-Arrays. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!