gpt4 book ai didi

java - 如何将 Intellij 查找用法的结果限制为仅特定类的结果?

转载 作者:行者123 更新时间:2023-12-02 01:26:34 26 4
gpt4 key购买 nike

我是 Intellij 的新用户。我有一个层次结构,其中 ClassA 和 ClassB 在 MyInterface 中实现 foo():

public interface MyInterface{
void foo()
}
public class ClassA implements MyInterface{
@Override
public void foo(){
System.out.println("Hello");
}
}
public class ClassB implements MyInterface{
@Override
public void foo(){
System.out.println("World");
}
}
public class HelloWorld {
public static void main(String[] args){
new ClassA().foo();
new ClassB().foo();
}
}

当我在 ClassA 中的 foo() 定义上查找用法时,ClassA 和 ClassB 中的 foo() 都被找到。有没有办法只在找到的 ClassA 实例上调用 foo() ?

最佳答案

您只能搜索ClassA的用法: enter image description here

您还可以限制使用 scope项目中的某些文件(包括创建自定义范围): enter image description here

关于java - 如何将 Intellij 查找用法的结果限制为仅特定类的结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56822261/

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