Java - Set接口


Java - Set接口

Set是一个不能包含重复元素的Collection。它模拟了数学集抽象。

Set接口仅包含从Collection继承的方法,并添加禁止重复元素的限制。

Set还在equals和hashCode操作的行为上添加了一个更强的契约,允许Set实例有意义地进行比较,即使它们的实现类型不同。

Set声明的方法总结在下表中

Sr.No. Method & Description
1

add( )

将对象添加到集合中。

2

clear( )

从集合中删除所有对象。

3

contains( )

如果指定的对象是集合中的元素,则返回true。

4

isEmpty( )

如果集合没有元素,则返回true。

5

iterator( )

返回集合的Iterator对象,该对象可用于检索对象。

6

remove( )

从集合中删除指定的对象。

7

size( )

返回集合中的元素数。

实例

Set在HashSet,TreeSet,LinkedHashSet等各种类中都有实现。以下是解释Set功能的示例

import java.util.*;
public class SetDemo {

  public static void main(String args[]) {
      int count[] = {34, 22,10,60,30,22};
      Set<Integer> set = new HashSet<Integer>();
      try {
         for(int i = 0; i < 5; i++) {
            set.add(count[i]);
         }
         System.out.println(set);

         TreeSet sortedSet = new TreeSet<Integer>(set);
         System.out.println("The sorted list is:");
         System.out.println(sortedSet);

         System.out.println("The First element of the set is: "+ (Integer)sortedSet.first());
         System.out.println("The last element of the set is: "+ (Integer)sortedSet.last());
      }
      catch(Exception e) {}
   }
}

输出

[34, 22, 10, 60, 30]
The sorted list is:
[10, 22, 30, 34, 60]
The First element of the set is: 10
The last element of the set is: 60