当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Collections emptyListIterator()用法及代码示例


Java Collections 类的 emptyListIterator() 方法用于获取一个没有元素的 List Iterator。

用法

以下是 emptyListIterator() 方法的声明:

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

参数

此方法不接受任何参数。

返回

emptyListIterator() 方法返回没有元素的列表迭代器。

异常

无此类元素异常

兼容版本

Java 1.7 及以上

例子1

import java.util.*;
public class CollectionsEmptyListIteratorExample1 {
	public static void main(String[] args) {
		ListIterator<String> Itr = Collections.emptyListIterator();
            System.out.println("Output:"+Itr.hasNext());        	 
	      }
}

输出:

Output:false

例子2

import java.util.*;
public class CollectionsEmptyListIteratorExample2 {
	public static void main(String[] args) {		
		List<Integer> ls = new ArrayList<Integer>();
            ls.add(1);
           ls.add(2);
           ListIterator<String> Itr = Collections.emptyListIterator();            
           System.out.println(Itr.next());         
	     }	  
}

输出:

Exception in thread "main" java.util.NoSuchElementException
	at java.base/java.util.Collections$EmptyIterator.next(Collections.java:4190)
	at myPackage.CollectionsEmptyListIteratorExample2.main(CollectionsEmptyListIteratorExample2.java:10)

例子3

import java.util.*;
public class CollectionsEmptyListIteratorExample3 {
	public static void main(String[] args) {		
		List<Integer> ls = new ArrayList<Integer>();
            ls.add(1);
            ls.add(2);
            ListIterator<String> Itr = Collections.emptyListIterator();            
            System.out.println(Itr.nextIndex());         
            System.out.println(Itr.previousIndex());
            System.out.println("nextIndex() and previousIndex() always returns 0 and -1.");
	      }	  
}

输出:

0
-1
nextIndex() and previousIndex() always returns 0 and -1.





相关用法


注:本文由纯净天空筛选整理自 Java Collections emptyListIterator() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。