“编辑器中的文件不可运行”-IntelliJ

ibps3vxo  于 2022-09-20  发布在  其他
关注(0)|答案(1)|浏览(2372)

我无法运行此程序。我尝试编辑运行配置,将src文件夹目录标记为资源根目录,再次测试资源根目录,但仍不起作用。尽管建造是可能的。

https://i.stack.imgur.com/GZgML.png

svdrlsy4

svdrlsy41#

您不需要在类封装Example{}中使用类Test()

public class EncapsulationExample {
    private String name;
    private int x;

    public String getName() {
        return name;
    }
    public int getValue(){
        return x;
    }
    public void setName(String name){
        this.name = name;
    }
    public void setValue(int x){
        this.x = x;
    }
    public static void main(String[] args) {
        EncapsulationExample e1 = new EncapsulationExample();
        e1.setName("Aara");
        e1.setValue(10);
        System.out.println(e1.getName()+e1.getValue());
    }
}

相关问题