檢測一個字串是否在jvm的常量池中

明天還有我發表於2016-02-27

檢測一個字串是否在jvm的常量池中 :

  1. public static boolean inPool(String s) {  
  2.     String s2 = s.intern();  
  3.     if (s2 == s)  
  4.         return true;  
  5.     return false;  
  6. }  

相關文章