java.util.TreeSet.contains()方法實例
contains(Object o) 方法是用來判斷當且僅當此set是否包含指定的元素,方法返回true。
聲明
以下是java.util.TreeSet.contains()方法的聲明。
public boolean contains(Object o)
參數
-
o-- 這是此set要被檢查是否包含的對象。
返回值
如果此set包含指定的元素,方法調用返回true。
異常
-
ClassCastException-- 如果指定元素不能與元素相比於當前集合,這個異常被拋出。
-
NullPointerException-- 如果指定的元素為null,並且此set使用自然順序,或者其比較器不允許使用null元素,這個異常將被拋出。
例子
下麵的例子展示java.util.TreeSet.contains()方法的使用。
package com.yiibai; import java.util.Iterator; import java.util.TreeSet; public class TreeSetDemo { public static void main(String[] args) { // creating a TreeSet TreeSet <Integer>treeadd = new TreeSet<Integer>(); // adding in the tree set treeadd.add(12); treeadd.add(13); treeadd.add(14); treeadd.add(15); // check existence of 15 System.out.println("Checking existence of 15 "); System.out.println("Is 15 there in the set: "+treeadd.contains(15)); } }
現在編譯和運行上麵的代碼示例,將產生以下結果。
Checking existence of 15 Is 15 there in the set: true