當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。