当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java java.util.TreeSet.contains()用法及代码示例



描述

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

声明

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

public boolean contains(Object o)

参数

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

返回值

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

异常

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

  • NullPointerException- 如果指定元素为空并且此集合使用自然排序,或者其比较器不允许空元素,则抛出此问题。

示例

下面的例子展示了 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

相关用法


注:本文由纯净天空筛选整理自 java.util.TreeSet.contains() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。