检测一个字符串是不是在jvm的常量池中(原创)

检测一个字符串是否在jvm的常量池中(原创)检测一个字符串是否在jvm的常量池中public static boolean inPoo

检测一个字符串是否在jvm的常量池中(原创)
检测一个字符串是否在jvm的常量池中

    public static boolean inPool(String s) {        String s2 = s.intern();        if (s2 == s)            return true;        return false;    }