int[] arr = {1,2,3,4,5};
Integer[] wrp = Arrays.stream(arr).boxed().toArray(Integer[]::new);
wrp[0] = 10;
System.out.println(Arrays.toString(arr));
System.out.println(Arrays.toString(wrp));
[1, 2, 3, 4, 5]
[10, 2, 3, 4, 5]
Integer[] wrp = {1,2,3,4,5};
int[] arr = Arrays.stream(wrp).mapToInt(Integer::intValue).toArray();
wrp[0] = 10;
System.out.println(Arrays.toString(arr));
System.out.println(Arrays.toString(wrp));
[1, 2, 3, 4, 5]
[10, 2, 3, 4, 5]
사실상 Array의 List형 View를 만든다고 보면 된다.
리스트를 통해 배열을 길이를 건드리면 밑처럼 에러가 발생한다.
Integer[] wrp = {1,2,3,4,5};
// primitive형은 에러 발생
List<Integer> list = Arrays.asList(wrp);
wrp[0] = 10;
list.set(4, 99);
System.out.println(Arrays.toString(wrp));
System.out.println(list);
list.add(1);
[10, 2, 3, 4, 99]
[10, 2, 3, 4, 99]
Exception in thread "main" java.lang.UnsupportedOperationException
at java.base/java.util.AbstractList.add(AbstractList.java:153)
at java.base/java.util.AbstractList.add(AbstractList.java:111)
at Main.main(Main.java:16)
Array의 View를 가져와 그 값을 토대로 새로운 List를 만드는 방법이다.
Integer[] wrp = {1,2,3,4,5};
// primitive형은 에러 발생
List<Integer> list = new ArrayList<>(Arrays.asList(wrp));
wrp[0] = 10;
list.set(4, 99);
System.out.println(Arrays.toString(wrp));
System.out.println(list);
list.add(1);
System.out.println(list);
[10, 2, 3, 4, 5]
[1, 2, 3, 4, 99]
[1, 2, 3, 4, 99, 1]
// java 8 or higher
Integer[] wrp = {1,2,3,4,5};
List<Integer> list = Arrays.stream(wrp).collect(Collectors.toList());
System.out.println(list);
// primitive
int[] arr = {6,7,8,9};
List<Integer> list2 = Arrays.stream(arr).boxed().collect(Collectors.toList());
System.out.println(list2);
[1, 2, 3, 4, 5]
[6, 7, 8, 9]
Integer[][] wrp = {{1,2,3}, {4,5,6}, {7,8,9}};
List<List> list = Arrays.stream(wrp).map(Arrays::asList).collect(Collectors.toList());
// 1D에 쓰는 방식으로는 제대로 된 변환이 이루어지지 않는다는 것을 보여주기 위한 리스트
List list2 = new ArrayList<>(Arrays.asList(wrp));
System.out.println(list);
System.out.println(list2);
[[1, 2, 3], [4, 5, 6], [7, 8, 9]]
// 값을 확인하지 않아도 자료형이 Integer[] 그대로인 것을 알 수 있다.
[[Ljava.lang.Integer;@6a5fc7f7, [Ljava.lang.Integer;@3b6eb2ec, [Ljava.lang.Integer;@1e643faf]
List<Integer> list1d = List.of(1,2,3,4,5);
// int[]는 에러
Integer[] arr = list1d.toArray(new Integer[0]);
System.out.println(Arrays.deepToString(arr));
[1, 2, 3, 4, 5]
List<Integer[]>
같은 형식이면 위 방법으로도 가능하지만, List<List>
의 형태면 불가능하다. 그래서 Stream API를 써야 편하게 가능하다. 아니면, 일일이 하거나.
Integer[][] wrp = {{1,2,3}, {4,5,6}, {7,8,9}};
List<List<Integer>> list = Arrays.stream(wrp).map(Arrays::asList).collect(Collectors.toList());
// 기본형으로 변환
int[][] arr = list.stream()
.map(l -> l.stream().mapToInt(i -> i).toArray())
.toArray(int[][]::new);
// 참조형으로 변환
Integer[][] wrp2 = list.stream()
.map(l -> l.stream().toArray(Integer[]::new))
.toArray(Integer[][]::new);
System.out.println(Arrays.deepToString(arr));
System.out.println(Arrays.deepToString(wrp2));
[[1, 2, 3], [4, 5, 6], [7, 8, 9]]
[[1, 2, 3], [4, 5, 6], [7, 8, 9]]
생성 시에 List를 주면 바로 변환이 된다.
Array는 List로 변환해서 주면 된다.
List<Integer> list = List.of(1,2,3,4,5);
Set<Integer> set = new HashSet<Integer>(list);
System.out.println(set);
// array
Integer[] arr = {6,7,8,9,10};
Set<Integer> set2 = new HashSet<Integer>(Arrays.asList(arr));
System.out.println(set2);
[1, 2, 3, 4, 5]
[6, 7, 8, 9, 10]
Set<Integer> set = new HashSet<>();
set.add(1);set.add(2);set.add(3);set.add(4);set.add(5);
// to List
List list = new ArrayList<>(set);
System.out.println(list);
// to Wrapper array
Integer[] arr = set.toArray(new Integer[0]);
System.out.println(Arrays.toString(arr));
// to Primitive array
int[] pArr = set.stream().mapToInt(i -> i).toArray();
System.out.println(Arrays.toString(pArr));
[1, 2, 3, 4, 5]
[1, 2, 3, 4, 5]
[1, 2, 3, 4, 5]
String str = "1234";
int num = Integer.parseInt(str);
System.out.println(num + 1);
1235
int num = 1234;
String str = Integer.toString(num);
String str2 = num + 1 + "";
System.out.println(str);
System.out.println(str2);
1234
1235
String str = "Java is one of the most popular languages in the world.";
String[] s1 = str.split(" ");
String[] s2 = str.split("");
System.out.println(Arrays.toString(s1));
System.out.println(Arrays.toString(s2));
[Java, is, one, of, the, most, popular, languages, in, the, world.]
[J, a, v, a, , i, s, , o, n, e, , o, f, , t, h, e, , m, o, s, t, , p, o, p, u, l, a, r, , l, a, n, g, u, a, g, e, s, , i, n, , t, h, e, , w, o, r, l, d, .]
String[] s = {"She", "sells", "sea-shells", "on", "the", "sea-shore"};
String str = String.join(" ", s);
System.out.println(str);
// Stream API: 접두, 접미 문자열 추가 가능.
String str2 = Arrays.stream(s).collect(Collectors.joining(" ", "[", "]"));
System.out.println(str2);
She sells sea-shells on the sea-shore
[She sells sea-shells on the sea-shore]
String str = "bunny bunny bunny";
char[] c = str.toCharArray();
System.out.println(Arrays.toString(c));
[b, u, n, n, y, , b, u, n, n, y, , b, u, n, n, y]
char[] c = {'a', 'b', ' ', 'c', 'd'};
String str = new String(c);
System.out.println(str);
ab cd