Dog other = (Dog) obj;
if (age != other.age)
return false;
return true;
为什么会有两个return,这怎么解释
前面个return false是if语句的。
{
}