Java ConcurrentSkipListSet first()方法
java.util.concurrent.ConcurrentSkipListSet的first()方法是Java中的一个内置函数,用于返回当前该集合中的第一个(最低)元素。
语法
ConcurrentSkipListSet.first()
返回值: 该函数返回当前这个集合中的第一个(最低)元素。
异常: 如果这个集合是空的,该函数会抛出NoSuchElementException。
下面的程序说明了ConcurrentSkipListSet.first()方法。
程序1 :
// Java Program Demonstrate first()
// method of ConcurrentSkipListSet
import java.util.concurrent.ConcurrentSkipListSet;
class ConcurrentSkipListSetFirstExample1 {
public static void main(String[] args)
{
// Initializing the set
ConcurrentSkipListSet<Integer>
set = new ConcurrentSkipListSet<Integer>();
// Adding elements to first set
set.add(10);
set.add(35);
set.add(20);
set.add(25);
System.out.println("The lowest element in the set: "
+ set.first());
}
}
输出。
The lowest element in the set: 10
**
****程序2:** 在first()中显示NoSuchElementException的程序。
// Java Program Demonstrate first()
// method of ConcurrentSkipListSet
import java.util.concurrent.ConcurrentSkipListSet;
class ConcurrentSkipListSetFirstExample2 {
public static void main(String[] args) throws InterruptedException
{
// Initializing the set
ConcurrentSkipListSet<Integer>
set = new ConcurrentSkipListSet<Integer>();
try {
System.out.println("The lowest element in the set: " +
set.first());
}
catch (Exception e) {
System.out.println("Exception :" + e);
}
}
}
输出。
Exception :java.util.NoSuchElementException
参考资料: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentSkipListSet.html#first-