这两种字符串对象的构建有什么不同?
											String str1= new String("hello");String str2= new String(str1);
String str1= new String("hello");
String str2 = str1;
输出的时候,str1和str2两种方式结果都一样是hello;
书上的提示就简单的说String是final型,对象与对象变量一一对应,看不大懂。
谢谢。
 2006-11-24 23:33
	    2006-11-24 23:33
   2006-11-24 23:41
	    2006-11-24 23:41