以下为定义equal(加上这个定义,返回ture或false)
public boolean equals(Object o){
student s=(student)o;
if (s.name.equals(this.name)&&s.age==this.age)
else return false;
}如果equals()返回的值为
以下为实现标准equals的流程:
public boolean equals(Object o){
if (this==o) return trun; //此时两者相同
if (o==null) return false;
if (! o instanceof strudent) return false; //不同类
studeng s=(student)o; //强制转换
if (s.name.equals(this.name)&&s.age==this.age) return true;
else return false;
}
以上过程为实现equals的标准过程。
package TomText; public class TomText_38 {
private int day;
private int month;
private int year;
public void setDate(int day,int month,int year){
this.day=day;
this.month=month;
this.year=year;
}
public static void main(String[] args){
TomText_38 t=new TomText_38();
t.setDate(3, 7, 2018);
System.out.println(t.day);
System.out.println(t.month);
System.out.println(t.year);
} }