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 emptyList()用法及代碼示例
- Java Collections emptySet()用法及代碼示例
- Java Collections emptySortedSet()用法及代碼示例
- Java Collections emptyNavigableSet()用法及代碼示例
- Java Collections emptyMap()用法及代碼示例
- Java Collections emptySortedMap()用法及代碼示例
- Java Collections emptyNavigableMap()用法及代碼示例
- Java Collections emptyEnumeration()用法及代碼示例
- Java Collections emptyIterator()用法及代碼示例
- Java Collections enumeration()用法及代碼示例
- Java Collections synchronizedSortedSet()用法及代碼示例
- Java Collections checkedQueue()用法及代碼示例
- Java Collections unmodifiableNavigableSet()用法及代碼示例
- Java Collections checkedSet()用法及代碼示例
- Java Collections copy()用法及代碼示例
- Java Collections checkedMap()用法及代碼示例
- Java Collections synchronizedNavigableSet()用法及代碼示例
- Java Collections singleton()用法及代碼示例
- Java Collections fill()用法及代碼示例
- Java Collections nCopies()用法及代碼示例
注:本文由純淨天空篩選整理自 Java Collections emptyListIterator() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。