比如有一个字符串数组
String str[]=new String[2];
str[0]="123";
str[1]="456";str[0]里面存储的是123这个字符串对象,还是存储的是123字符串对象的引用地址?