Set 是不能包含重复元素的集合。主要有HashSet和TreeSet两大实现类。

在判断重复元素的时候,Set集合会调用hashCode()和equal()方法来实现。

下表总结了 Set 声明的方法 

序号方法及描述
1

add( )

将对象添加到集合中。

2

clear( )

从集合中删除所有对象。

3

contains( )

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

4

isEmpty( )

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

5

iterator( )

返回集合的迭代器对象,可用于检索对象。

6

remove( )

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

7

size( )

返回集合中元素的数量。

示例 1

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

import java.util.HashSet;
import java.util.Set;

public class SetDemo {

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

输出

[34, 22, 10, 60, 30] 

示例 2

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

import java.util.HashSet;
import java.util.Set;
import java.util.TreeSet;

public class SetDemo {

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

         TreeSet<Integer> sortedSet = new TreeSet<>(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 

示例 3

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

import java.util.HashSet;
import java.util.Set;
import java.util.TreeSet;

public class SetDemo {

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

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

         sortedSet.clear();
         System.out.println("The sorted list is:");
         System.out.println(sortedSet);
      }
      catch(Exception e) {}
   }
} 

输出

[34, 22, 10, 60, 30]
The sorted list is:
[10, 22, 30, 34, 60]
The sorted list is:
[]