6
Set <T>를 List <T>로 변환하는 가장 간결한 방법
예를 들어, 나는 현재 이것을하고있다 : Set<String> setOfTopicAuthors = .... List<String> list = Arrays.asList( setOfTopicAuthors.toArray( new String[0] ) ); 이길 수 있습니까?
201
java
list
collections
set
jdk1.6