我无法运行此程序。我尝试编辑运行配置,将src文件夹目录标记为资源根目录,再次测试资源根目录,但仍不起作用。尽管建造是可能的。
https://i.stack.imgur.com/GZgML.png
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()); } }
1条答案
按热度按时间svdrlsy41#
您不需要在类封装Example{}中使用类Test()