黑马程序员技术交流社区

标题: 关于字符串中的易错点 [打印本页]

作者: 18001105207    时间: 2016-9-23 12:17
标题: 关于字符串中的易错点
大家说说下面程序的结果
package demo01;

public class Demo01 {

        public static void main(String[] args) {

                String s1 = "hello";
                String s2 = "world";
                String s3 = s1+s2;
                String s4 = "hello"+"world";
               
                System.out.println(s4 == s3);
                System.out.println(s4.equals(s3));
        }

}


作者: minhang0902    时间: 2016-9-23 12:21
False
True
作者: Fate_stay    时间: 2016-9-23 20:17
false  true
作者: wangyahui    时间: 2016-9-23 20:23
false true
作者: u8u8u80pp    时间: 2016-9-23 21:15
你们都好厉害
作者: HermitXU    时间: 2016-9-23 21:42
ddddddddddddd




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2