Collections类emptyList()方法
- emptyList() 方法可在
java.util
包。 - emptyList() 方法用于返回不可变的空列表。
- emptyList() 方法是一个静态方法,因此可以通过类名访问它,如果我们尝试使用类对象访问该方法,则不会出现错误。
- emptyList() 方法在返回空列表时不会抛出异常。
用法:
public static final List emptyList();
参数:
- 它不接受任何参数。
返回值:
这个方法的返回类型是List
,它返回一个不可变的空白列表。
例:
// Java program is to demonstrate the example
// of List emptyList() of Collections
import java.util.*;
public class EmptyList {
public static void main(String args[]) {
// By using emptyList() method is
// to get a empty list
List < Integer > list = Collections.emptyList();
// Display Empty List
System.out.println("list:" + list);
}
}
输出
list:[]
相关用法
- Java Collections emptyListIterator()用法及代码示例
- 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()用法及代码示例
注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Collections emptyList() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。