Java集合emptyNavigableSet()方法



描述

Java集合emptyNavigableSet()方法用于获取空的不可变导航集。此集合是可序列化的。

声明

以下是java.util.Collections.emptyNavigableSet()方法的声明。

public static final <T> NavigableSet<T> emptyNavigableSet()

参数

返回值

异常

获取空整数导航集示例

以下示例演示了如何使用Java集合emptyNavigableSet()方法获取空的整数导航集。我们使用emptyNavigableSet()方法创建了一个空的导航集,然后尝试向其中添加一些元素,这将导致异常。

 
package com.tutorialspoint;

import java.util.Collections;
import java.util.NavigableSet;

public class CollectionsDemo {
   public static void main(String args[]) {
      
      // create an empty navigable set    
      NavigableSet<Integer> emptyNavigableSet = Collections.emptyNavigableSet();

      System.out.println("Created empty immutable navigable set: "+emptyNavigableSet);

      // try to add elements
      emptyNavigableSet.add(1);
      emptyNavigableSet.add(2);
   }    
}

输出

让我们编译并运行上述程序,这将产生以下结果。由于列表是不可变的,因此会抛出异常。

Created empty immutable navigable set: []
Exception in thread "main" java.lang.UnsupportedOperationException
	at java.base/java.util.Collections$UnmodifiableCollection.add(Collections.java:1060)
	at com.tutorialspoint.CollectionsDemo.main(CollectionsDemo.java:15)

获取空字符串导航集示例

以下示例演示了如何使用Java集合emptyNavigableSet()方法获取空的字符串导航集。我们使用emptyNavigableSet()方法创建了一个空的导航集,然后尝试向其中添加一些元素,这将导致异常。

 
package com.tutorialspoint;

import java.util.Collections;
import java.util.NavigableSet;

public class CollectionsDemo {
   public static void main(String args[]) {
      
      // create an empty navigable set    
      NavigableSet<String> emptyNavigableSet = Collections.emptyNavigableSet();

      System.out.println("Created empty immutable navigable set: "+emptyNavigableSet);

      // try to add elements
      emptyNavigableSet.add("A");
      emptyNavigableSet.add("B");
   }    
}

输出

让我们编译并运行上述程序,这将产生以下结果。由于列表是不可变的,因此会抛出异常。

Created empty immutable navigable set: []
Exception in thread "main" java.lang.UnsupportedOperationException
	at java.base/java.util.Collections$UnmodifiableCollection.add(Collections.java:1060)
	at com.tutorialspoint.CollectionsDemo.main(CollectionsDemo.java:15)

获取空对象导航集示例

以下示例演示了如何使用Java集合emptyNavigableSet()方法获取空的Student对象导航集。我们使用emptyNavigableSet()方法创建了一个空的导航集,然后尝试向其中添加一些元素,这将导致异常。

 
package com.tutorialspoint;

import java.util.Collections;
import java.util.NavigableSet;

public class CollectionsDemo {
   public static void main(String args[]) {
      
      // create an empty navigable set    
      NavigableSet<Student> emptyNavigableSet = Collections.emptyNavigableSet();

      System.out.println("Created empty immutable navigable set: "+emptyNavigableSet);

      // try to add elements
      emptyNavigableSet.add(new Student(1, "Julie"));
      emptyNavigableSet.add(new Student(2, "Robert"));
   }    
}
class Student {
   int rollNo;
   String name;

   Student(int rollNo, String name){
      this.rollNo = rollNo;
      this.name = name;
   }

   @Override
   public String toString() {
      return "[ " + this.rollNo + ", " + this.name + " ]";
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果。由于列表是不可变的,因此会抛出异常。

Created empty immutable navigable set: []
Exception in thread "main" java.lang.UnsupportedOperationException
	at java.base/java.util.Collections$UnmodifiableCollection.add(Collections.java:1060)
	at com.tutorialspoint.CollectionsDemo.main(CollectionsDemo.java:15)
java_util_collections.htm
广告