位置:首页 > Java技术 > Java.util包 > java.util.Collections.singleton()方法实例

java.util.Collections.singleton()方法实例

singleton(T) 方法用于返回一个不可变集只包含指定对象。

声明

以下是java.util.Collections.singleton()方法的声明。

public static <T> Set<T> singleton(T o)

参数

  • o-- 这是将要存储在返回的集合的唯一对象。

返回值

在方法调用返回一个不可变的集合只包含指定对象。

异常

  • NA

例子

下面的例子显示java.util.Collections.singleton()方法的使用

package com.yiibai;

import java.util.*;

public class CollectionsDemo {
   public static void main(String args[]) {
      // create an array of string objs
      String init[] = { "One", "Two", "Three", "One", "Two", "Three" };
      
      // create two lists
      List list1 = new ArrayList(Arrays.asList(init));
      List list2 = new ArrayList(Arrays.asList(init));
      
      // remove from list1
      list1.remove("One");
      System.out.println("List1 value: "+list1);
      
      // remove from list2 using singleton
      list2.removeAll(Collections.singleton("One"));		   
      System.out.println("The SingletonList is :"+list2);
   }
}

现在编译和运行上面的代码示例,将产生以下结果。

List1 value: [Two, Three, One, Two, Three]
The SingletonList is :[Two, Three, Two, Three]