位置:首页 > Java技术 > Java.util包 > singletonList()方法实例

singletonList()方法实例

singletonList(T) 方法用于返回一个只包含指定对象的不可变列表。

声明

以下是java.util.Collections.singletonList()方法的声明。

public static <T> List<T> singletonList(T o)

参数

  • o--这是要被存储在返回的列表中的唯一对象。

返回值

  • 在方法调用返回一个只包含指定对象的不可变列表。

异常

  • NA

例子

下面的例子显示java.util.Collections.singletonList()方法的使用

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 one list
      List list = new ArrayList(Arrays.asList(init));
      
      System.out.println("List value before: "+list);
      
      // create singleton list
      list = Collections.singletonList("TP");
      
      System.out.println("List value after: "+list);
   }
}

现在编译和运行上面的代码示例,将产生以下结果。

List value before: [One, Two, Three, One, Two, Three]
List value after: [TP]