Java TreeSet contains()方法
java.util.TreeSet.contains(Object o) 如果集合包含指定的元素,则返回true。
1 语法
public boolean contains(Object o)
2 参数
o:这是要判断是否包含在此集中的对象。
3 返回值
如果此集合包含指定的元素,则方法调用将返回true。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.TreeSet.contains(Object o)方法的例子
*/
import java.util.TreeSet;
public class Demo {
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
热门文章
优秀文章