码迷,mamicode.com
首页 > 编程语言 > 详细

java equals 方法

时间:2017-06-23 00:39:21      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:print   str   equals   equal   pre   nbsp   out   []   his   

 

package com.mydemo.controller;

public class TestEquals {
    public static void main(String[] args) {
        Dog d1 = new Dog(1, 2, 3);
        Dog d2 = new Dog(1, 2, 3);
        // d1 永远不等于 d2,比较的是两个对象的引用
        System.out.println(d1 == d2);
        // Object 的equals 方法默认比较两个对象的引用
        System.out.println(d1.equals(d2));
        // String 类重写了Object 的equals方法
    }
}
class Dog {
    int color;
    int weight;
    int height;
    
    public Dog(int color, int weight, int height) {
        this.color = color;
        this.weight = weight;
        this.height = height;
    }
}

 

java equals 方法

标签:print   str   equals   equal   pre   nbsp   out   []   his   

原文地址:http://www.cnblogs.com/BaiLaowu/p/7067762.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!