SMALL
String[] test = {"1","2","3","1","2"};
System.out.println("before length=" + test.length);
test = new HashSet<String>
(Arrays.asList(test)).toArray(new String[0]);
System.out.println("after length=" + test.length);
for(String s:test){
System.out.println(s);
}
/* result
before length=5
after length=3
1
2
3
*/
LIST
'Java' 카테고리의 다른 글
서울에서 김서방 찾기 문제풀기 (0) | 2018.09.20 |
---|---|
※ JAVA 배열 내에 중복값 제거하기/출력하기 (0) | 2018.09.18 |
simplemagic 자바 파일타입 확인하기 (자바라이브러리) (0) | 2018.09.07 |
ORM, JPA Hibernate 란? (0) | 2018.03.16 |
프로그래머 모의테스트해설 문제1 (0) | 2018.03.13 |