/**
* * A:案例演示
*
Collection接口中,带All的功能演示
boolean addAll(Collection c)
boolean removeAll(Collection c)
boolean containsAll(Collection c)
boolean retainAll(Collection c)
*/
@SuppressWarnings("rawtypes")
public class Demo1 {
@SuppressWarnings("unchecked")
public static void main(String[] args) {