JSP学习笔记(八十一):Java中Set的使用
Set用来存放唯一值的集合,对于重复的值,会自动过滤掉。还是直接看例子吧: public static void main(String[] args) { Set<String> set = new HashSet<String>(); set.add("a"); set.add("a");