gpt4 book ai didi

java - IntelliJ IDEA 不显示成员字段

转载 作者:行者123 更新时间:2023-11-29 04:26:25 25 4
gpt4 key购买 nike

问题如下图,是否有任何选项可以启用显示成员abc

enter image description here

我正在使用带有 JDK 9+179 的 IntelliJ IDEA CE 2017.2.1。

这是上面的示例代码:

    public class Test {

@FunctionalInterface
interface IF {
String abc = "abc";

void apply();
}

public static void main(String[] args) {
IF theIF = ()->{};

System.out.println(theIF.abc); // I can print `abc` value here, but...
theIF. // DOT here(press ctrl + space) not show member `abc`
}
}

最佳答案

这是使用实例限定符访问静态成员,最好用 IF.abc 来完成。因此,代码完成不会立即提供它,但如果您第二次按 Ctrl+Space,应该会建议它。

关于java - IntelliJ IDEA 不显示成员字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46087465/

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