Arrays.asList()
-
[JAVA] Arrays.asList()Programming/Java 2021. 7. 18. 16:50
java.util.Arrays에는 배열을 조작하기 위한 static method들이 모여 있다. Arrays (Java SE 11 & JDK 11 ) Compares two int arrays lexicographically over the specified ranges. If the two arrays, over the specified ranges, share a common prefix then the lexicographic comparison is the result of comparing two elements, as if by Integer.compare(int, int), at a rel docs.oracle.com 그 중에 배열을 List로 바꾸는데 편리하게 사용할 수 있는 Arrays...