一个数组不会包含多个字段。数组是对象(或原语)的集合。似乎您想要一个包含字段名称、id 和值的对象数组。
首先创建你的对象
public class Element(){
private String name;
private String id;
private String value;
public Element(String name, String id, String value){
this.name = name;
this.id = id;
this.value = value;
}
public String getName(){
return this.name;
}
public String getId(){
return this.id;
}
public String getValue(){
return this.value;
};
}
**创建对象后,您可以创建该对象的数组。
Element[] elements = {new Element("first", "1", "Value1"), new Element("second", "2", "Value2") };
创建数组后,您可以使用对象数组
for(Element element:elements){
System.out.println(element.getName());
System.out.println(element.getId());
System.out.println(element.getValue());
}