码迷,mamicode.com
首页 > 编程语言 > 详细

java中Set的用法

时间:2017-11-24 20:12:42      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:利用   特点   each   错误   java   foreach   contain   集合   nbsp   

Set集合的特点:

不能存储相同的元素。

同时因为其是一个抽象的接口:所以不能直接实例化一个set对象。(Set s = new Set() )错误

该接口主要继承于Collections接口,所以具有Collection的一些常见的方法。

常见的方法:

Sr.No.Method & Description
1

add( )         向集合中添加元素

2

clear( )        去掉集合中所有的元素

3

contains( )    判断集合中是否包含某一个元素

4

isEmpty( )    判断集合是否为空

5

iterator( )    主要用于递归集合,返回一个Iterator()对象

6

remove( )    从集合中去掉特定的对象

7

size( )        返回集合的大小

Set接口最长用的两大实现:HashSet     TreeSet

TreeSet:会将里面的元素默认排序。

 

Set<Integer> test = new TreeSet<>();
int a = 1;
int b = 8;
int c = 3;
 
test.add(a);
test.add(b);
test.add(c);
 
 //遍历集合test   利用foreach遍历          //输出结果:1   3   8    
 for (Integer value : test) {
     System.out.print(value+" ");
 }    

//利用Iterator实现遍历
Iterator<Integer> value = test.iterator();
while (value.hasNext()) {
    int s = value.next();
    System.out.print(s+" ");
}                                //输出结果:1   3   8    

 

java中Set的用法

标签:利用   特点   each   错误   java   foreach   contain   集合   nbsp   

原文地址:http://www.cnblogs.com/xiaxj/p/7891963.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!