为了账号安全,请及时绑定邮箱和手机立即绑定

判断是否相同听不懂

这块看不懂啊

正在回答

2 回答

@Override
	public boolean equals(Object obj) {
		if (this == obj)
			return true;
		if (obj == null)
			return false;
		if (!(obj instanceof Student))
			return false;
		Student other = (Student) obj;
		if (name == null) {
			if (other.name != null)
				return false;
		} else if (!name.equals(other.name))
			return false;
		return true;
	}


0 回复 有任何疑惑可以回复我~

http://img1.sycdn.imooc.com//55d9f55f0001d87801200068.jpg就是这个


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

判断是否相同听不懂

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信