K
kem
Unregistered / Unconfirmed
GUEST, unregistred user!
1:String str = new String("hello");与String str = "hello";的区别?????
2:为什么
for (int i =1;i<6;i++) {
String str = new String("hello");
}
可以运行,
但是:
String str = new String("hello");
String str = new String("hello");
连续两行,就编译通不过??
上面用for循环产生的5个str对象是属于同一个吗??
多谢!!!
2:为什么
for (int i =1;i<6;i++) {
String str = new String("hello");
}
可以运行,
但是:
String str = new String("hello");
String str = new String("hello");
连续两行,就编译通不过??
上面用for循环产生的5个str对象是属于同一个吗??
多谢!!!