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


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


java.util.Collections類的checkedCollection()方法用於返回指定集合的​​動態類型安全視圖

返回的集合不會將hashCode和equals操作傳遞到後備集合,而是依賴於Object的equals和hashCode方法。在後備集合是集合或列表的情況下,必須保留這些操作的合同。

如果指定的集合是可序列化的,則返回的集合將是可序列化的。


由於null被認為是任何引用類型的值,因此隻要後備集合可以,返回的集合就允許插入null元素。

用法:

public static  Collection 
    checkedCollection(Collection c, Class type)

參數:此方法將以下參數作為參數:

  • c –要為其返回動態類型安全視圖的集合
  • type –允許c保留的元素類型

返回值:此方法返回指定集合的​​動態類型安全視圖

以下示例說明了checkedCollection()方法

示例1:

// Java program to demonstrate 
// checkedCollection() method 
// for String value 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] argv) throws Exception 
    { 
  
        try { 
  
            // creating object of List<String> 
            List<String> arlst = new ArrayList<String>(); 
  
            // Adding element to arrlist 
            arlst.add("CSS"); 
            arlst.add("PHP"); 
            arlst.add("HTML"); 
            arlst.add("TajMahal"); 
  
            // printing the arrlist 
            System.out.println("List: " + arlst); 
  
            // create typesafe view of the collection 
            Collection<String> 
                tslst = Collections 
                            .checkedCollection(arlst, String.class); 
  
            // printing the arrlist after operation 
            System.out.println("Typesafe view of List: " + tslst); 
        } 
        catch (IllegalArgumentException e) { 
  
            System.out.println("Exception thrown : " + e); 
        } 
    } 
}
輸出:
List: [CSS, PHP, HTML, TajMahal]
Typesafe view of List: [CSS, PHP, HTML, TajMahal]

示例2:

// Java program to demonstrate 
// checkedCollection() method 
// for Integer value 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] argv) throws Exception 
    { 
        try { 
  
            // creating object of List<Integer> 
            List<Integer> arlst = new ArrayList<Integer>(); 
  
            // Adding element to arrlist 
            arlst.add(20); 
            arlst.add(30); 
            arlst.add(40); 
            arlst.add(50); 
  
            // printing the arrlist 
            System.out.println("List: " + arlst); 
  
            // create typesafe view of the collection 
            Collection<Integer> 
                tslst = Collections 
                            .checkedCollection(arlst, Integer.class); 
  
            // printing the arrlist after operation 
            System.out.println("Typesafe view of List: " + tslst); 
        } 
  
        catch (IllegalArgumentException e) { 
            System.out.println("Exception thrown : " + e); 
        } 
    } 
}
輸出:
List: [20, 30, 40, 50]
Typesafe view of List: [20, 30, 40, 50]


相關用法


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