Java 集合 emptyListIterator() 方法



描述

Java 集合 emptyListIterator() 方法用于获取空的列表迭代器。ListIterator 为空,其 hasNext 方法始终返回 false。next() 方法调用会抛出 NoSuchElementException,而 remove() 方法会抛出 IllegalStateException。

声明

以下是 Java 集合 emptyListIterator() 方法的声明。

public static <T> ListIterator<T> emptyListIterator()

参数

返回值

异常

获取整数的空列表迭代器示例

以下示例演示了如何使用 Java 集合 emptyListIterator() 方法获取整数的空列表迭代器。我们使用 emptyListIterator() 方法创建了一个空的列表迭代器,然后检查列表迭代器是否包含元素。

 
package com.tutorialspoint;

import java.util.Collections;
import java.util.ListIterator;

public class CollectionsDemo {
   public static void main(String args[]) {
      
      // create an empty list    
      ListIterator<Integer> emptyListIterator = Collections.emptyListIterator();

      System.out.println("Created empty list iterator, it has elements: "+emptyListIterator.hasNext());
   }    
}

输出

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

Created empty list iterator, it has elements: false

获取字符串的空列表迭代器示例

以下示例演示了如何使用 Java 集合 emptyListIterator() 方法获取字符串的空列表迭代器。我们使用 emptyListIterator() 方法创建了一个空的列表迭代器,然后检查列表迭代器是否包含元素。

 
package com.tutorialspoint;

import java.util.Collections;
import java.util.ListIterator;

public class CollectionsDemo {
   public static void main(String args[]) {
      
      // create an empty list    
      ListIterator<String> emptyListIterator = Collections.emptyListIterator();

      System.out.println("Created empty list iterator, it has elements: "+emptyListIterator.hasNext());
   }    
}

输出

让我们编译并运行上述程序,这将产生以下结果。由于列表是不可变的,因此将抛出异常。

Created empty list iterator, it has elements: false

获取对象的空列表迭代器示例

以下示例演示了如何使用 Java 集合 emptyListIterator() 方法获取 Student 对象的空列表迭代器。我们使用 emptyListIterator() 方法创建了一个空的列表迭代器,然后检查列表迭代器是否包含元素。

 
package com.tutorialspoint;

import java.util.Collections;
import java.util.ListIterator;

public class CollectionsDemo {
   public static void main(String args[]) {
      
      // create an empty list    
      ListIterator<Student> emptyListIterator = Collections.emptyListIterator();

      System.out.println("Created empty list iterator, it has elements: "+emptyListIterator.hasNext());
   }    
}
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 + " ]";
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果。由于列表是不可变的,因此将抛出异常。

Created empty list iterator, it has elements: false
java_util_collections.htm
广告