java小记

//转list
Collections.singletonList(m.get("a"))
//转string
String.valueOf()
//判断两个字符串是否相等
 a.equals(b);

你可能感兴趣的:(java小记)