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


Java Collections unmodifiableSortedSet()用法及代碼示例


Collections類unmodifiableSortedSet()方法

  • unmodifiableSortedSet() 方法可在java.util包。
  • unmodifiableSortedSet() 方法用於獲取給定 SortedSet (ss) 的不可修改視圖。
  • unmodifiableSortedSet() 方法是一個靜態方法,它可以通過類名訪問,如果我們嘗試使用類對象訪問該方法,那麽我們也不會得到任何錯誤。
  • unmodifiableSortedSet() 方法在返回給定排序集的不可修改視圖時不會拋出異常。

用法:

    public static SortedSet unmodifiableSortedSet(SortedSet ss);

參數:

  • SortedSet ss– 表示要為其檢索不可修改視圖的排序集對象。

返回值:

這個方法的返回類型是SortedSet,它返回給定排序集的不可修改視圖。

例:

// Java program to demonstrate the example 
// of SortedSet unmodifiableSortedSet() 
// method of Collections


import java.util.*;

public class UnmodifiableSortedSetOfCollections {
    public static void main(String args[]) {
        // Instantiates a sorted set object
        SortedSet < Integer > ss = new TreeSet < Integer > ();

        // By using add() method is to add
        //objects in a sorted set 
        ss.add(20);
        ss.add(10);
        ss.add(40);
        ss.add(30);
        ss.add(50);

        // Display Sorted Set
        System.out.println("SortedSet:" + ss);

        // By using unmodifiableSortedSet() method is to
        // represent the tree set in unmodifiable view
        ss = Collections.synchronizedSortedSet(ss);

        // We will get an exception when we 
        // try to add an object in an unmodifiable
        // sorted set

        /* ss.add(60)*/
    }
}

輸出

SortedSet:[10, 20, 30, 40, 50]


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java Collections unmodifiableSortedSet() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。