>  기사  >  Java  >  Java 9의 Arrays 클래스에 어떤 새로운 메서드가 추가되었나요?

Java 9의 Arrays 클래스에 어떤 새로운 메서드가 추가되었나요?

WBOY
WBOY앞으로
2023-08-20 18:33:27664검색

在Java 9中,Arrays类新增了哪些新方法?

Arrays 클래스에는 배열을 조작하기 위한 다양한 메서드가 포함될 수 있으며 배열을 목록으로 처리할 수 있는 정적 팩터리 메서드도 포함되어 있습니다. Java 9에서는 Arrays 클래스에 Arrays.equals(), Arrays.compare()Arrays.mismatch()라는 세 가지 중요한 메서드를 추가합니다.

Arrays.equal() - Java 9에서는 여러 오버로드된 메서드가 Arrays.equals() 메서드에 추가되었습니다. 새로운 메서드는 제공된 두 배열에 fromIndextoIndex 매개변수를 추가합니다. 이러한 메서드는 상대 인덱스 위치를 기반으로 두 배열의 동일성을 확인합니다.

Syntax

<strong>public static boolean equals(int[] a, int aFromIndex, int aToIndex, int[] b, int bFromIndex, int bToIndex)</strong>

위 구문에서 이 메서드는 지정된 두 int 배열과 지정된 범위의 요소가 동일한 경우 true를 반환합니다. 두 번째 방법은 char 배열과 동일합니다.

Example

import java.util.Arrays;
public class CompareArrayTest {
   public static void arrayEqualsTest() {
      int[] existRows = {0, 1, 2, 3, 4, 5};
      int[] newRows = {3, 4, 5, 1, 2, 0};
      System.out.println(<strong>Arrays</strong>.<strong>equals</strong>(existRows, newRows));
      System.out.println(<strong>Arrays</strong>.<strong>equals</strong>(existRows, 1, 3, newRows, 3, 5));
      System.out.println(<strong>Arrays</strong>.<strong>equals</strong>(existRows, 3, 5, newRows, 0, 2));
   }
   public static void main(String args[]) {
      CompareArrayTest.arrayEqualsTest();
   }
}

Output

false
true
true

Arrays.compare() − Java 9에서는 fromIndex/toIndex 매개변수를 사용하여 Arrays.compare() 메소드에 몇 가지 매개변수가 추가되었습니다. 상대 위치 비교에 사용됩니다.

syntax

<strong>public static int compare(int[] a, int aFromIndex, int aToIndex, int[] b, int bFromIndex, int bToIndex)</strong>
e 위의 구문 에서이 방법은 두 개의 int 어레이를 비교하여 지정된 범위를 비교합니다. ( ) −

Java 9에는 두 배열 조각 사이의 첫 번째 불일치 인덱스를 찾아 반환할 수 있는 Arrays.mismatch() 메서드의 다른 오버로드된 메서드가 있습니다.

Syntax

import java.util.Arrays;
public class LexicographicalArraysTest {
   public static void main(String args[]) {
      LexicographicalArraysTest.compareSliceArraysTest();
   }
   public static void compareSliceArraysTest() {
      int[] tomMarks = {5, 6, 7, 8, 9, 10};
      int[] daisyMarks = {5, 6, 7, 10, 9, 10};
      int[] maryMarks = {5, 6, 7, 8};
      System.out.println(<strong>Arrays.compare</strong>(tomMarks, 0, 3, daisyMarks, 0, 3));
      System.out.println(<strong>Arrays.compare</strong>(tomMarks, 0, 4, maryMarks, 0, maryMarks.length));
      System.out.println(<strong>Arrays.compare</strong>(daisyMarks, 0, 4, maryMarks, 0, maryMarks.length));
   }
}

에서 위 구문에서 메서드는 지정된 범위에서 두 int 배열 사이의 첫 번째 불일치의

상대

index

를 찾아서 반환합니다. 불일치가 발견되지 않은 경우 0(포함)까지의 범위에서 인덱스를 반환합니다. 더 작은 범위의 길이(포함)입니다.

Example

<strong>0
0
1</strong>
Output
<strong>public static int mismatch(int[] a, int aFromIndex, int aToIndex, int[] b, int bFromIndex, int bToIndex)</strong>

위 내용은 Java 9의 Arrays 클래스에 어떤 새로운 메서드가 추가되었나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

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