码迷,mamicode.com
首页 > 其他好文 > 详细

重写equals和toString

时间:2015-06-19 21:51:01      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:equals   tostring   

public class Cell {

public int x;

public int y;

public Cell(int x, int y){

this.x = x;

this.y =y;

}

public String toString(){

return +x+","+y;

}

public boolean equals(Object obj){

if(this == obj){

return true;

}

if(obj == null){

return false;

}

if(obj instanceof Cell){

Cell c = (Cell) obj;

return this.x == c.x && this.y == c.y;

}else{

return false;

}

}


重写equals和toString

标签:equals   tostring   

原文地址:http://skieshawk.blog.51cto.com/4683228/1663392

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