我有两个班级,在班级Player
我有一个变量,定义为private int collectedDots
,我想在另一个班级Exit
中访问。
我已经在类Player中定义了Get和Set方法:
public void setCollectedDots(int cd)
{
collectedDots = cd;
}
public int getCollectedDots()
{
return collectedDots;
}
但现在我想访问collectedDots
课程中的Exit
字段。当我将这两个方法复制到Exit类时,我不断收到错误cannot find symbol - variable collectedDots
。
我的理解是,一旦我设置collectedDots
和get
方法,我就可以从Player类中检索set
变量。
我出错的任何想法?
答案 0 :(得分:1)
我还不熟悉java,但我想你需要确保已经导入了你要使用的其他类,或者你可以使用类的实例:
gatherDots dots = new collectingDots(); int dotsValue = dots.getCollectedDots();
答案 1 :(得分:-1)
您应该使用@FindBy(xpath="//input[@class='k-formatted-value k-input valid']")
WebElement Category_Display_Order;
@FindBy(xpath="//span[@title='Increase value']")
WebElement Category_Increase_Value;
变量而不是public int collectedDots
变量