기초수학 - HashSet

HeejinShin·2022년 7월 30일
0

Java

목록 보기
2/7

HashSet

import java.util.HashSet 
  1. Set인터페이스 구현 클래스
  2. 순서대로 입력되지 않고, 일정하게 유지되지 않는다.
  3. 중복을 허용하지 않음.
retainAll(Collection) // HashSet의 요소들을 Collection인자의 요소들과 비교하여 동일한 요소들을 제외하고 제거함. 
HashSet a = new HashSet(Arrays.asList(1, 2, 3, 4, 5));
        HashSet b = new HashSet(Arrays.asList(2, 4, 6, 8, 10));
        a.retainAll(b);
        System.out.println("교집합:" + a);

        HashSet a = new HashSet(Arrays.asList(1, 2, 3, 4, 5));
        HashSet b = new HashSet(Arrays.asList(2, 4, 6, 8, 10));
        a.retainAll(b)   //a에서 b의 공통요소만 남기고 제거함
  1. retainAll (교집합)
  2. addAll (합집합)
profile
Studying Go Lang

0개의 댓글