Set接口的常用方法
和List接口一样, Set接口也是Collection的子接口,因此,常用方法和Collection接口一样.
Set接口的遍历方式
同Collection的遍历方式一样,因为Set接口是Collection接口的子接口。1.可以使用迭代器
2.增强for
3.不能使用索引的方式来获取.
和List接口一样, Set接口也是Collection的子接口,因此,常用方法和Collection接口一样.
Set接口的遍历方式
同Collection的遍历方式一样,因为Set接口是Collection接口的子接口。1.可以使用迭代器
2.增强for
3.不能使用索引的方式来获取.
//1.以Set接口的实现类 HashSet 来讲解Set接口的方法//2. set接口的实现类的对象(Set接口对象)
Set set = new Hashset(;
set.add( "john");
set.add("lucy");
set.add( "john");//重复set.add( "jack");
set.add(null);//
set.add(null);//再次添加null
System.out.println( "set=" + set);
网友评论