>  기사  >  Java  >  자바 배열에 일반적으로 사용되는 10가지 메소드

자바 배열에 일반적으로 사용되는 10가지 메소드

尚
앞으로
2020-06-19 17:28:024978검색

자바 배열에 일반적으로 사용되는 10가지 메소드

배열 만들기:

String[] a = new String[5];
String[] b = {“a”,”b”,”c”, “d”, “e”};
String[] c = new String[]{“a”,”b”,”c”,”d”,”e”};

1. 배열 인쇄

우리는 종종 배열의 모든 요소를 ​​인쇄하기 위해 for 루프나 일부 반복자를 사용하지만 자세를 변경할 수도 있습니다.

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 만들기

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. 특정 값이 포함되어 있는지 확인하세요

int array[] = {1,2,3,4,5};
boolean isContain= Arrays.asList(array).contains(5);
System.out.println(isContain);
// true

4. 두 개의 배열을 연결하세요

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. 배열을 반전하세요

method(new String[]{"a", "b", "c", "d", "e"});

7. . 특정 요소 삭제

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]

8. set으로 변환

int[] intArray = { 1, 2, 3, 4, 5 };
int[] removed = ArrayUtils.removeElement(intArray, 3);//create a new array
System.out.println(Arrays.toString(removed));

9. 배열 목록을 Array

Set<String> set = new HashSet<String>(Arrays.asList(new String[]{"a", "b", "c", "d", "e"}));
System.out.println(set);
//[d, e, b, c, a]

로 변환합니다. 배열 요소를 문자열로 구성합니다

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가지 메소드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 weixin에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제