位置:首頁 > 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]