我正在使用此代码来调用同一类中存在的方法。当我尝试调用该方法时,出现此错误..如何解决此错误
请帮我
错误:
: cannot find symbol
symbol : method getRowCount()
代码:
int modelvalue =(int) getRowCount();
System.out.println("This is model"+modelvalue);
方法:
public int getRowCount()
{
return dataz.size();
}