检测一个字符串是否在jvm的常量池中
public static boolean inPool(String s) {
String s2 = s.intern();
if (s2 == s)
return true;
return false;
}
2068





