字符串文字和字符串对象内存分配

时间:2015-03-26 03:38:10

标签: 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()方法有什么作用?

哪个更有效?

0 个答案:

没有答案