gpt4 book ai didi

java - IntelliJ 是否可以将 @Overrides 添加到特定接口(interface)的所有方法中?

转载 作者:IT老高 更新时间:2023-10-28 20:43:42 24 4
gpt4 key购买 nike

我创建了一个接口(interface),有大约 30 个方法并在 30 个类中实现。

我想将@Override 添加到每个实现中,但我不想手动完成。

IntelliJ 如何帮助我?

界面如下:

public interface PreviewObjectTests {
void testGetName();
void testGetType();
//... 30 similar methods
}

实现代码:

public class PreviewObjectAccountTest implements PreviewObjectTests {

//I want to add @Override here!
@Test public void testGetName() {
assertThat(...);
}

//I want to add @Override here!
@Test public void testGetType() {
assertThat(...);
}

//...30 similar methods

}

最佳答案

使用 Alt+Enter 即可轻松完成,然后按 右箭头 进入子菜单:

Fix all

关于java - IntelliJ 是否可以将 @Overrides 添加到特定接口(interface)的所有方法中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9030986/

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