Get set Intersection - Java java.util

Java examples for java.util:Set Intersection

Description

Get set Intersection

Demo Code


//package com.java2s;

import java.util.HashSet;

import java.util.Set;

public class Main {
    public static <A> Set<A> setIntersection(Set<A> a, Set<A> b) {
        Set<A> set = new HashSet<A>();
        for (A x : a)
            if (b.contains(x))
                set.add(x);//w w  w  .j  av a 2s  .  c  o  m
        return set;
    }
}

Related Tutorials