A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

面试题
        ==和equals()的区别?
        A:==
                基本类型:比较的是值是否相同
                引用类型:比较的是地址值是否相同
        B:equals()
                只能比较引用类型。默认情况下,比较的是地址值是否相同。
例如:字符串中==和equals的区别
A:==和equals()
                        String s1 = new String("hello");
                        String s2 = new String("hello");
                        System.out.println(s1 == s2);// false
                        System.out.println(s1.equals(s2));// true

                        String s3 = new String("hello");
                        String s4 = "hello";
                        System.out.println(s3 == s4);// false
                        System.out.println(s3.equals(s4));// true

                        String s5 = "hello";
                        String s6 = "hello";
                        System.out.println(s5 == s6);// true   //指向方法区的同一个数据,地址值也一样。
                        System.out.println(s5.equals(s6));// true
                B:字符串的拼接
                        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");// true 字符如果是常量相加,先加,然后在方法区的常量池中找,如果有和相加后相同的就直接返回地址值,否则就创建。
                        System.out.println(s3.equals("hello" + "world"));// true
                但是,我们可以根据自己的需要重写该方法。也可以通过Alt+shift+s:来自动生成。

5 个回复

正序浏览
很不错~!!
回复 使用道具 举报
很详细!
回复 使用道具 举报
学习了!
回复 使用道具 举报
重新 发表于 2015-6-7 07:15
明白了,,,,

我也是新手,有问题一起探讨,共同进步
回复 使用道具 举报
明白了,,,,
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马