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

Intellij IDEA 是否能像eclipse一样自动生成重写Object方法?

例如重写toString方法和equals这样要敲很多这样的……

正在回答

4 回答

mac下的快捷键呢

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

我已经找到了 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;
}











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

qq_新一_0

为什么我的idea里生成的和你的不一样
2017-12-20 回复 有任何疑惑可以回复我~
#2

落叶萧萧online 回复 qq_新一_0

能用就行了
2017-12-24 回复 有任何疑惑可以回复我~

楼主百度出来了吗。。。我百度还没找下

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

可以,都有快捷方式的,去百度一下就知道了

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

举报

0/150
提交
取消

Intellij IDEA 是否能像eclipse一样自动生成重写Object方法?

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