java.util.TreeSet.contains() 方法

描述

contains(Object o) 方法用于当且仅当此集合包含指定元素时才返回 true。


声明

以下是 java.util.TreeSet.contains() 方法的声明。

public boolean contains(Object o)

参数

o − 这是要检查是否包含在此集合中的对象。


返回值

如果此集合包含指定元素,则方法调用返回 true。


异常

  • ClassCastException − 如果指定元素无法与集合中当前存在的元素进行比较,则会抛出此错误。

  • NullPointerException − 如果指定元素为 null 并且此集合使用自然排序,或者其比较器不允许 null 元素,则会抛出此错误。


示例

下面的例子展示了 java.util.TreeSet.contains() 方法的使用。

package com.tutorialspoint;

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