标签: java string memory-management heap
String abc= new String ("Hello");//will create new instance
和
String abc="Hello";//will not create new instance
当字符串被创建为文字时,值为" Hello"将在字符串常量池中,引用将在堆栈中,String对象怎么样。它的内存分配会发生在哪里?
intern()方法有什么作用?
哪个更有效?