创建新类时如何查看参数?

时间:2019-05-27 05:04:16

标签: intellij-idea

在创建新的类或方法时,我曾经能够查看所需的参数。但是,现在他们不再出现了。创建类时如何查看参数?

运行最新的Windows版本。

public class Main {

    public static void main(String args[]) {
        Case theCase = new Case("Default", "Corsair", "500W");
    }
}

public class Case {

    private String model;
    private String manufacturer;
    private String powerSupply;

    public Case(String model, String manufacturer, String powerSupply,) {
       this.model = model;
       this.manufacturer = manufacturer;
       this.powerSupply = powerSupply;

    }

    public void pressPowerButton() {
        System.out.println("Power button pressed");
    }

    public String getModel() {
        return model;
    }

    public String getManufacturer() {
        return manufacturer;
    }

    public String getPowerSupply() {
        return powerSupply;
    }
}

创建案例时,我看不到参数是什么,而不得不来回移动到“案例”类中

2 个答案:

答案 0 :(得分:0)

没关系,要想在键入时看到参数,必须在编辑器中输入它们而不移动光标。

答案 1 :(得分:0)

您可以显式调用Parameter Info操作,该操作通常映射到 Ctrl / (Cmd)- p

enter image description here