Java“获取”和“设置”方法

时间:2014-04-21 01:49:11

标签: java methods get set

我有两个班级,在班级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

我的理解是,一旦我设置collectedDotsget方法,我就可以从Player类中检索set变量。

我出错的任何想法?

2 个答案:

答案 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变量