我有通过传递参数 ipadd 来调用 getSystem() 的方法,我有两个类,如下所述
SystemReport Class
public class SystemReport
{
protected System[] system;
public ComputerSystemResponse ()
{
}
public void setSystems( System[] system )
{
this.system = system;
}
public System[] getSystem()
{
return system;
}
}
我感兴趣的站点详细信息所在的系统类,
public class System
{
protected String site;
public System()
{
}
public System(String site)
{
this.site=site;
}
public void setSite(String site)
{
this.site = site;
}
public String getSite()
{
return site;
}
}
不同类中的方法 & 尝试通过循环检索站点的值
SystemReport rep = classInstance.getNames(ipadd);
System[] test = rep.getSystem();
getNames 的返回类型
protected SystemReport getNames (ipadd)
{
SystemReport rep = new SystemReport();
return rep;
}
回答问题:
1. classInstance.getNames(ipadd) 的返回类型为 SystemReport
2. rep size is > 0
现在我想从代表那里获取网站,我尝试通过test.length is 0检查长度。我错过了什么?