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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 18463730277 中级黑马   /  2015-5-12 23:59  /  294 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

public class Student {
        public static void main(String[] args) {
                int x = 10;
                int y = 10;
                System.out.println(x == y);
                Student s1 = new Student();
                Student s2 = new Student();
                Student s3 = s1;
                System.out.println(s1 == s2);
                System.out.println(s1 == s3);
}}

1 个回复

倒序浏览
true  false true    第一个是判断int值,都是10,所以相等ture,第二个是new出来的地址值肯定不一样false,第三个是赋值,把第一个的地址值赋给了S3,所以是true     我是菜鸟  不知道对不对
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马