gpt4 book ai didi

java - 修改 Eclipse equals() 方法模板

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:45:57 24 4
gpt4 key购买 nike

eclipse 生成的 equals() 方法没有 { } for if 结构。例如

public boolean equals(Object obj) {
if (this == obj)
return true;
.........
return true;
}

如何修改生成如下样式的代码

public boolean equals(Object obj) {
if (this == obj){
return true;
}
.........
return true;
}

最佳答案

您可以使用 Generate hashcode and equals 选项的检查 Use blocks in if statements 选项来生成括号,如下所示:

Check the use blocks in if statements

生成的代码如下所示:

enter image description here

另一种选择是使用Save actions 功能,并添加一个format sourcecode 操作。

干杯

关于java - 修改 Eclipse equals() 方法模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24924267/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com