黑马程序员技术交流社区
标题:
关于字符串拼接问题
[打印本页]
作者:
xyxlx111
时间:
2015-7-19 21:39
标题:
关于字符串拼接问题
如题:String s1 = "hello";
String s2 = "world";
String s3 = "helloworld";
System.out.println(s3 == s1 + s2);// false
System.out.println(s3.equals((s1 + s2)));// true
System.out.println(s3 == "hello" + "world");// false 这个我们错了,应该是true
System.out.println(s3.equals("hello" + "world"));// true
作者:
龙哥Longer
时间:
2015-7-19 21:58
谢谢分享,学习了
作者:
花千骨
时间:
2015-7-19 22:14
谢谢分享。
作者:
扶摇丶
时间:
2015-7-19 22:30
谢谢楼主分享
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2