HashSet 예제


- Set 계열의 특징 : 중복 저장하지 않으며 저장 순서 없음


import java.util.HashSet;;


public class dailyCode {

public static void main(String[] args){

HashSet set = new HashSet();

HashSet setCopy = new HashSet();

set.add("one");//autoboxing

set.add("one");

set.add("two");

set.add("one");

set.add(new String("three"));//Wrapper class

set.add(1);

set.add(100.5);

System.out.println("set : " + set.toString());

setCopy.addAll(set);

System.out.println("setCopy : " + setCopy.toString());

set.remove("one");

System.out.println("set : " + set.toString());

setCopy.clear();

System.out.println("setCopy : " + setCopy.toString());

}


'프로그래밍 > JAVA' 카테고리의 다른 글

arraycopy Example  (0) 2016.11.19
scheduleAtFixedRate vs. scheduleWithFixedDelay  (0) 2016.11.18
Callback using interface  (0) 2016.11.17
Singleton Design Pattern  (0) 2016.11.16
초기화 블록 (Initialization Block)  (0) 2016.11.15
ArrayList 예제  (0) 2016.11.14
생성자 예제 (Constructor Example)  (0) 2016.11.13

+ Recent posts