当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java 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.tutorialspoint;

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]

相关用法


注:本文由纯净天空筛选整理自 java.util.Collections.singleton() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。