Java 集合 emptyIterator() 方法



描述

Java Collections emptyIterator() 方法用于获取空迭代器。迭代器为空,其 hasNext 方法始终返回 false。next() 方法调用会抛出 NoSuchElementException,remove() 方法会抛出 IllegalStateException。

声明

以下是 Java Collections emptyIterator() 方法的声明。

public static <T> Iterator<T> emptyIterator()

参数

返回值

异常

获取整数的空迭代器示例

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

 
package com.tutorialspoint;

import java.util.Collections;
import java.util.Iterator;

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

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

输出

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

Created empty iterator, it has elements: false

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

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

 
package com.tutorialspoint;

import java.util.Collections;
import java.util.Iterator;

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

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

输出

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

Created empty iterator, it has elements: false

获取对象的空迭代器示例

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

 
package com.tutorialspoint;

import java.util.Collections;
import java.util.Iterator;

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

      System.out.println("Created empty iterator, it has elements: "+emptyIterator.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 iterator, it has elements: false
java_util_collections.htm
广告