String s1="hello";
String s2=s1.substring(2,3);
String s3 =new StringBuffer(s1).toString();
string的內部使用char數組來維護的;
1.s1="hello";
系統開辟內存放置hello,並將其刷入字符串池;
2.s2=s1.substring(2,3);
內部是new了一個新對象;
相當於
s2 = new String("l");
所以會分配堆內存,並且不會刷入字符串池;
s3 = new ..
堆內存為StringBuffer分配空間放置hello;
toString是new了一個String對象,所以會新分配一個地址,並且不會刷入字符串池。
如果有幫助,希望采納