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


Java Collections singleton()用法及代碼示例


Collections類singleton()方法

  • singleton() 方法可在java.util包。
  • singleton() 方法用於返回一個不可變的集合 [即不可變集隻包含給定的對象 (obj)]。
  • singleton() 方法是一個靜態方法,因此可以通過類名訪問它,如果我們嘗試使用類對象訪問該方法,則不會出現錯誤。
  • singleton() 方法在返回不可變集時不拋出異常。

用法:

    public static Set singleton(Type obj);

參數:

  • Type obj– 代表列表(l) 進行旋轉。

返回值:

這個方法的返回類型是Set,它返回一個不可變的集合,它隻包含給定的對象(obj)。

例:

// Java program is to demonstrate the example of
// singleton(Type obj) method of Collections

import java.util.*;

public class SingletonOfCollections {
    public static void main(String args[]) {
        // Instatiates a array list object
        List < Integer > arr_l = new ArrayList < Integer > ();

        // By using add() method is to add
        // objects in an array list 
        arr_l.add(10);
        arr_l.add(20);
        arr_l.add(30);
        arr_l.add(40);
        arr_l.add(50);
        arr_l.add(50);
        arr_l.add(50);

        // Display ArrayList
        System.out.println("Array List:" + arr_l);

        // By using singleton() method is to
        // remove the elements 50 by using the
        // help of removeAll() method in ArrayList
        arr_l.removeAll(Collections.singleton(50));

        // Display singleton list
        System.out.println("Collections.singleton(50):" + arr_l);
    }
}

輸出

Array List:[10, 20, 30, 40, 50, 50, 50]
Collections.singleton(50):[10, 20, 30, 40]


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java Collections singleton() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。