我是java的新手。对许多人来说,这可能是一个愚蠢的问题。 但我是Struck所以请帮忙。我正在尝试制作一些东西。我正在使用以下两个类。我在这里定义java代码。
公共类人员{
%t
和
-Xloggc
现在,我需要提取People Class中每个条目的每个数据。我正在使用getMethods来处理所有事情。 我在提取证词对象的数据时遇到问题,我需要为一个特定的对象或人类提取和保存证词类的字符串证词[]
答案 0 :(得分:-1)
由于证词是构造函数Testimony ... testimony
你必须定义一个getter,如:
public Testimony[] getTestimony()(
}
seter的可以应用相同的逻辑:
public void setTestimony(Testimony[] testimony){
this.Testimony = testimony;
}
如果您需要每个见证中的信息,您可以定义打印方法:
public void printAllTestimonies(){
for (Testimony testim : testimony) {
System.out.println("Testimony: "+ testim.gettestimony());
System.out.println("Name: "+ testim.getname());
System.out.println("Id: "+ testim.getid());
}
}