當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。