자바 int 배열을 Integer 배열로 변환

1 개요[ | ]

자바 int 배열을 Integer 배열로 변환
Java
CPU
1.5s
MEM
79M
1.2s
Copy
import java.util.Arrays;
public class MyClass {
    public static void main(String args[]) {
        int a[] = {1,2,3,4};
        Integer b[] = Arrays.stream(a).boxed().toArray(Integer[]::new); 

        System.out.println( a.getClass() );        // class [I
        System.out.println( Arrays.toString(a) );  // [1, 2, 3, 4]
        
        System.out.println( b.getClass() );        // class [Ljava.lang.Integer;
        System.out.println( Arrays.toString(b) );  // [1, 2, 3, 4]
    }
}
class [I
[1, 2, 3, 4]
class [Ljava.lang.Integer;
[1, 2, 3, 4]

2 같이 보기[ | ]

3 참고[ | ]