java singleton<t>_static <T> Set<T> singleton(T o)_Java.util包|WIKI教程

static Set singleton(T o)

描述 (Description)

singleton(T)方法用于返回仅包含指定对象的不可变集。

声明 (Declaration)

以下是java.util.Collections.singleton()方法的声明。public static Set singleton(T o)

参数 (Parameters)

o - 这是存储在返回集中的唯一对象。

返回值 (Return Value)

方法调用返回仅包含指定对象的不可变集。

异常 (Exception)

NA

例子 (Example)

以下示例显示了java.util.Collections.singleton()的用法package com.iowiki;

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]

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值