produce
package javalearn.ArrayLearn;
public class Produce {
private String id;
private String name;
private double price;
private int count;
public Produce() {
}
public Produce(String id, String name, double price, int count) {
this.id = id;
this.name = name;
this.price = price;
this.count = count;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public double getPrice() {
return price;
}
public void setPrice(double price) {
this.price = price;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
}
test
package javalearn.ArrayLearn;
public class ProduceTest {
public static void main(String[] args) {
Produce[] arr=new Produce[3];
Produce g1=new Produce("001","华为手机",5999,100);
Produce g2=new Produce("002","苹果手机",6999,100);
Produce g3=new Produce("002","点手机",5999,100);
arr[0]=g1;
arr[1]=g2;
arr[2]=g3;
for (int i = 0; i < arr.length; i++) {
System.out.println(arr[i]);
}
}
}