提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
创建和使用LinkedHashSet
//nowjava.com - 时代Java 提供 import java.util.LinkedHashSet; public class Main { public static void main(String[] args) { LinkedHashSet lhashSet = new LinkedHashSet(); lhashSet.add(new Integer("1")); lhashSet.add(new Integer("2")); lhashSet.add(new Integer("3")); System.out.println("LinkedHashSet contains.." + lhashSet); } }