Java TreeSet ceiling()方法
java.util.TreeSet.ceiling(E e) 用于查找大于或等于参数列表中给定元素的元素。
1 语法
public E ceiling(E e)
2 参数
e :需要匹配的元素。
3 返回值
如果该值大于或等于集合中的值,则返回true,否则返回false。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.TreeSet.ceiling(E e) 方法的例子
*/
import java.util.*;
public class Demo
{
public static void main(String as[]){
TreeSet <Integer>obj = new TreeSet<Integer>();
obj.add(2);
obj.add(8);
obj.add(5);
obj.add(1);
obj.add(10);
System.out.println("TreeSet: " +obj);
System.out.println("Ceiling value of 4 in set: " +obj.ceiling(4));
}
}
输出结果为:
TreeSet: [1, 2, 5, 8, 10]
Ceiling value of 4 in set: 5
热门文章
优秀文章