重複の可能性: String.intern
() のガベージ コレクション動作
私によると、null として宣言されたときの String 参照は、String リテラル プールからエントリを削除しません。それをクリアする方法を知りたいです。
String object="csk";// creates an Object in Java Heap and makes an entry String Literal Pool .
object=null// however make this reference to null object .
//しかし、文字列リテラルからエントリを削除しません。リテラルプールからエントリを削除するかどうかは疑問です