Java 集合 singletonList() 方法



描述

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

声明

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

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

参数

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

返回值

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

异常

获取整数的单例列表示例

以下示例演示了 Java 集合 singletonList(T) 方法的用法。我们创建了一个包含一些整数的列表对象,打印了原始列表。使用 singletonList(T) 方法,我们删除了给定值的列表元素,然后打印了更新后的列表。

package com.tutorialspoint;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;

public class CollectionsDemo {

   public static void main(String[] args) {
      List<Integer> list = new ArrayList<>(Arrays.asList(1,2,3,4,5));

      System.out.println("Initial collection value: " + list);
      // remove 2 from this collection
      list.removeAll(Collections.singletonList(2));
      System.out.println("Final collection value: "+list);
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Initial collection value: [1, 2, 3, 4, 5]
Final collection value: [1, 3, 4, 5]

获取字符串的单例列表示例

以下示例演示了 Java 集合 singletonList(T) 方法的用法。我们创建了一个包含一些字符串的列表对象,打印了原始列表。使用 singletonList(T) 方法,我们删除了给定值的列表元素,然后打印了更新后的列表。

package com.tutorialspoint;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;

public class CollectionsDemo {

   public static void main(String[] args) {
      List<String> list = new ArrayList<>(Arrays.asList("Welcome","to","Tutorialspoint"));

      System.out.println("Initial collection value: " + list);
      // remove "to" from this collection
      list.removeAll(Collections.singletonList("to"));
      System.out.println("Final collection value: "+list);
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Initial collection value: [Welcome, to, Tutorialspoint]
Final collection value: [Welcome, Tutorialspoint]

获取对象的单例列表示例

以下示例演示了 Java 集合 singletonList(T) 方法的用法。我们创建了一个包含一些 Student 对象的列表对象,打印了原始列表。使用 singletonList(T) 方法,我们删除了给定值的列表元素,然后打印了更新后的列表。

package com.tutorialspoint;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;

public class CollectionsDemo {

   public static void main(String[] args) {
      List<Student> list = new ArrayList<>(Arrays.asList(new Student(1, "Julie"),
         new Student(2, "Robert"), new Student(3, "Adam")));

      System.out.println("Initial collection value: " + list);
      // remove Robert from this collection
      list.removeAll(Collections.singletonList(new Student(2, "Robert")));
      System.out.println("Final collection value: "+list);
   }
}
class Student {
   int rollNo;
   String name;

   Student(int rollNo, String name){
      this.rollNo = rollNo;
      this.name = name;
   }

   @Override
   public String toString() {
      return "[ " + this.rollNo + ", " + this.name + " ]";
   }
   @Override
   public boolean equals(Object obj) {
      Student s = (Student)obj;
      return this.rollNo == s.rollNo && this.name.equalsIgnoreCase(s.name);
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Initial collection value: [[ 1, Julie ], [ 2, Robert ], [ 3, Adam ]]
Final collection value: [[ 1, Julie ], [ 3, Adam ]]
java_util_collections.htm
广告