Intellij IDEA 是否能像eclipse一样自动生成重写Object方法?
例如重写toString方法和equals这样要敲很多这样的……
例如重写toString方法和equals这样要敲很多这样的……
2017-02-19
我已经找到了 alt+insert 我的笔记本的话是 ALT+FN+Insert,
生成出来的代码和老师案例中的代码有一些区别,但是结果正确,正在对比。。
这是eclipse的
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Dog other = (Dog) obj;
if (age != other.age)
return false;
return true;
}
这是idea里的
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof Dog)) return false;
Dog dog = (Dog) o;
return age == dog.age;
}
举报