首先用到的就是Collections.unmodifiablexxx(         set.add("hello");
         set.add("insert");
         Set<String> unmodify=Collections.unmodifiableSet(set);
         System.out.println(set);
         
     }