Language/Java
The method asList(Object[]) in the type Arrays is not applicable for the arguments (String) 문제 해결 방법
The method asList(Object[]) in the type Arrays is not applicable for the arguments (String) 문제가 발생했다. 이 문제는 는 아래의 코드처럼, List에 값을 넣은 상태에서 선언을 하고 싶어 아래와 같이 했는데 당연 안된다. List YNList = new ArrayList(Arrays.asList("a", "b", "c")); 이 문제를 해결하는 방법은 여러 방법이 있는데, 가장 많이 쓰는 방법은 아래와 같다. List YNList = new ArrayList(Arrays.asList(new String[] {"abc", "cd"})); 위의 코드처럼, new ArrayList 안에 Arrays.asList를 넣고 그 안에 Stri..
2022. 2. 19.
최근댓글