Java TreeMap containsValue()方法
java.util.TreeMap.containsValue() 如果Map将一个或多个key映射到指定值,则返回true。
1 语法
public boolean containsValue(Object value)
2 参数
value:这是要测试Map中是否存在的值。
3 返回值
如果存在与此值的映射,则方法调用返回true,否则返回false。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.TreeMap.containsValue() 方法的例子
*/
import java.util.*;
public class Demo {
public static void main(String[] args) {
// creating tree map
NavigableMap treemap = new TreeMap();
// populating tree map
treemap.put(2, "two");
treemap.put(1, "one");
treemap.put(3, "three");
treemap.put(6, "six");
treemap.put(5, "five");
System.out.println("Checking value");
System.out.println("'three' exists: "+ treemap.containsValue("three"));
}
}
输出结果为:
Checking value
'three' exists: true