我有一个带有字符串键和字符串值的 HashMap。我想从列表中获取一个项目,我试图提供密钥并想获得价值,但它给出了一个错误。以下示例如何通过给键“blazer”获得“both”值?
HashMap<String,String> upper = new HashMap<>();
upper.put("shoulder","both");
upper.put("blazer","both");
if(upper.get(upper.get("blazer"))) {} //gives an "incompatible types" error.
//Error: Required: boolean Found: java.lang.String