本帖最后由 杜工 于 2014-9-11 12:53 编辑
public class Test{
public static void main(String[] args){
String s1 = new String("amit");
System.out.println(s1.replace('m','r'));
System.out.println(s1);
String s3 = "arit";
String s4 = "arit";
String s2 = s1.replace('m','r');
System.out.println(s2);
System.out.println(s2 == s3);
System.out.println(s3 == s4);
}
}
骑士们,输出结果如何?
这算是道难题,需要完全理解字符串的创建机制。
|
|