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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。