HashMap 的 ContainKey()用法

String description = "你所要比较的字符串";
HashMap hashmap  =   new  HashMap();
hashmap.put(
" prepare receive button custom key " "" );
hashmap.put(
" cash_pay_all button custom key for check out " "" );
hashmap.put(
" confirm receive button custom key " "" );
if (hashmap.containsKey(description)) {
//如果包含,进行相关操作
}

你可能感兴趣的:(HashMap)