java代码创建Set

it2024-07-25  37

Set set = new HashSet();  //无序

Set set = new LinkedHashSet();  //按插入顺序
最新回复(0)